본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#103 백준 파이썬 [2010] 플러그

https://www.acmicpc.net/problem/2010

 

#Solution

input 자체가 굉장히 많기 때문에 input()함수로 풀면 시간 초과가 난다. 따라서 sys.stdin.readline()으로 풀어준다.

import sys

tap_num = int(input())
consent_num = sum([int(sys.stdin.readline()) for _ in range(tap_num)])

print(consent_num - tap_num + 1)