728x90
반응형
단순 사칙연산 문제이다. input을 써도 통과는 되는 것 같은데 너무 느리다. 그냥 앞으로는 입력받을 때 귀찮더라도 readline으로 받아야겠다.
import sys
for _ in range(int(sys.stdin.readline())):
res = 0
for i in range(int(sys.stdin.readline())):
res += max(0, max(map(int, sys.stdin.readline().split())))
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 13752번 히스토그램(python) (0) | 2021.03.03 |
---|---|
백준 알고리즘 13698번 Hawk eyes(python) (0) | 2021.03.03 |
백준 알고리즘 12840번 창용이의 시계(python) (0) | 2021.03.03 |
백준 알고리즘 4030번 포켓볼(python) (0) | 2021.03.03 |
백준 알고리즘 13118번 뉴턴과 사과(python) (0) | 2021.03.02 |