짱해커가 되어보자

boj 4435 본문

프로그래밍_일반/백준

boj 4435

Spadework 2020. 3. 17. 09:43

* 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'))

 

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

boj 17173  (0) 2020.03.18
boj 11575  (0) 2020.03.17
boj 5656  (0) 2020.03.16
boj 2948  (0) 2020.03.16
boj 14487  (0) 2020.03.15
Comments