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
- boj
- 11109
- 공주대 정보보호
- text
- 1547
- 2476
- 2965
- 2506
- 5586
- 10833
- Best of the Best
- acmicpc
- 영재교육원
- 10995
- 영재원
- 정보보호 영재원
- 차세대 보안 리더 양성
- 11943
- Python
- 4101
- BOB
- BoB 후기
- BoB 7기
- 리뷰
- 2501
- 차세대 보안 리더 양성 프로그램
- 정보보호 영재교육원
- 2605
- 5086
- EOF
Archives
- Today
- Total
짱해커가 되어보자
boj 12756 본문
* Solved 기준 브론즈3 단순 풀이
a,n = map(int, input().split())
b,m = map(int, input().split())
while(n>0 and m>0):
n-=b;m-=a
print('DRAW' if n<1 and m<1 else 'PLAYER {}'.format('A' if n>m else 'B'))
Comments