https://www.acmicpc.net/problem/2010
풀이
간단한 구현 문제입니다.
# 2010번 플러그
import sys
input = sys.stdin.readline
p = int(input())
total = 0
for _ in range(p):
total += int(sys.stdin.readline())
print(total - (p-1))
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준][Python] 15680번 연세대학교 - 코팩 (0) | 2023.03.02 |
---|---|
[백준][Python] 5554번 심부름 가는 길 - 코팩 (0) | 2023.02.22 |
[백준][Python] 2530번 인공지능 시계 - 코팩 (0) | 2022.09.27 |
[백준][Python] 10039번 평균 점수 - 코팩 (0) | 2022.09.26 |
[백준][Python] 1373번 2진수 8진수 - 코팩 (0) | 2022.09.26 |