짱해커가 되어보자

boj 13416 본문

프로그래밍_일반/백준

boj 13416

Spadework 2020. 2. 10. 18:45

* Solved 기준 브론즈3 단순 풀이

for _ in range(int(input())):
	s = 0
	for _ in range(int(input())):
		a,b,c = map(int, input().split())
		s += max(a,b,c) if max(a,b,c)>0 else 0
	print(s)

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 6322  (0) 2020.02.11
boj 11320  (0) 2020.02.10
boj 9469  (0) 2020.02.10
boj 11134  (0) 2020.02.10
boj 14909  (0) 2020.02.10
Comments