728x90
반응형
단순 사칙연산 문제이다.
s = 0
for _ in range(int(input())):
s += sum(list(map(int, input().split())))
print(s)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 17174번 전체 계산 횟수(python) (0) | 2021.03.01 |
---|---|
백준 알고리즘 16917번 양념 반 후라이드 반(python) (0) | 2021.03.01 |
백준 알고리즘 10203번 Count Vowels(python) (0) | 2021.03.01 |
백준 알고리즘 16503번 괄호 없는 사칙연산(python) (0) | 2021.03.01 |
백준 알고리즘 20976번 2 番目に大きい整数(python) (0) | 2021.03.01 |