728x90
n = int(input())
s = []
for i in range(1, n+1):
x, y, z = map(int, input().split())
d = []
d.append(x)
d.append(y)
d.append(z)
cnt = d.count(x)
if d.count(y) > cnt:
cnt = d.count(y)
if cnt == 3:
s.append(10000+x*1000)
if cnt == 2:
if x == y:
s.append(1000+x*100)
elif y == z:
s.append(1000+y*100)
else:
s.append(1000+z*100)
if cnt == 1:
s.append(max(d)*100)
print(max(s))
728x90
'호그와트' 카테고리의 다른 글
주perl "댁더러 술 달래써 댁더러 밥 달래써" (2) | 2022.10.24 |
---|---|
재미로 푸는 Brooklyn (2) | 2022.10.20 |
랜덤게임 좋아하세요? (2) | 2022.10.04 |
완전 심쿵 ♡ (0) | 2022.09.22 |
논리적으로 답을 도출하기 (0) | 2022.09.22 |