짱해커가 되어보자

boj 2484 본문

프로그래밍_일반/백준

boj 2484

Spadework 2020. 3. 7. 15:53

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

from collections import Counter

m = 0
for _ in range(int(input())):
	l,s = Counter(map(int, input().split())),0
	c = list(l.values()).count(2)
	for key,val in l.items():
		if(val==4): s += 50000+key*5000
		elif(val==3): s += 10000+key*1000
		elif(val==2): s += key*(500 if c==2 else 100)
	s += 2000 if c==2 else 1000 if c==1 else max(l.keys())*100 if len(l)==4 else 0
	m = max(m,s)
print(m)

 

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

boj 2399  (0) 2020.03.09
boj 2884  (0) 2020.03.08
boj 14624  (0) 2020.03.07
boj 9243  (0) 2020.03.06
boj 5704  (0) 2020.03.06
Comments