짱해커가 되어보자

boj 2511 본문

프로그래밍_일반/백준

boj 2511

Spadework 2020. 2. 6. 10:13

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

a,b,A,B,l = list(map(int, input().split())), list(map(int, input().split())),0,0,0
for i in range(10):
	(A,B,l) = (A+3,B,1) if a[i]>b[i] else (A,B+3,2) if a[i]<b[i] else (A+1,B+1,l)
print('{} {}\n{}'.format(A,B, 'A' if A>B or (A==B and l==1) else 'B' if A<B or (A==B and l==2) else 'D'))

 

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

boj 5354  (0) 2020.02.06
boj 9610  (0) 2020.02.06
boj 17863  (0) 2020.02.05
boj 5101  (0) 2020.02.04
boj 15059  (0) 2020.02.04
Comments