Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 차세대 보안 리더 양성 프로그램
- 10995
- 2965
- 11943
- 5086
- 2501
- EOF
- acmicpc
- 11109
- BoB 7기
- 영재원
- 10833
- boj
- 4101
- 정보보호 영재원
- Python
- 리뷰
- text
- 5586
- Best of the Best
- 1547
- 2605
- 정보보호 영재교육원
- 2476
- BOB
- BoB 후기
- 공주대 정보보호
- 2506
- 영재교육원
- 차세대 보안 리더 양성
Archives
- Today
- Total
목록2484 (1)
짱해커가 되어보자
boj 2484
* 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) prin..
프로그래밍_일반/백준
2020. 3. 7. 15:53