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
- 2476
- 차세대 보안 리더 양성 프로그램
- BoB 7기
- BOB
- 5086
- 5586
- 4101
- 차세대 보안 리더 양성
- 10833
- 리뷰
- 공주대 정보보호
- 2965
- acmicpc
- 2506
- text
- 정보보호 영재원
- 10995
- 영재교육원
- Best of the Best
- 2605
- boj
- 11943
- 2501
- 1547
- Python
- 정보보호 영재교육원
- 영재원
- 11109
- BoB 후기
- EOF
Archives
- Today
- Total
짱해커가 되어보자
boj 4435 본문
* Solved 기준 브론즈2 단순 풀이
for i in range(int(input())):
a = list(map(int,input().split()))
b = list(map(int,input().split()))
A = a[0]+a[1]*2+a[2]*3+a[3]*3+a[4]*4+a[5]*10
B = b[0]+b[1]*2+b[2]*2+b[3]*2+b[4]*3+b[5]*5+b[6]*10
print('Battle {}: {}'.format(i+1,
'Evil eradicates all trace of Good' if B>A else 'Good triumphs over Evil' if A>B else 'No victor on this battle field'))
Comments