https://www.acmicpc.net/problem/25642
1
2
3
4
5
6
7
8
9
10
11
|
def sol(a,b):
while a<5 and b<5:
b+=a
if b>=5:
return 'yt'
a+=b
if a>=5:
return 'yj'
a,b=map(int,input().split())
print(sol(a,b))
|
cs |
이 문제는 두 수를 입력 받아서 서로를 더하는데 5이상이 되면 지는 게임입니다.
(In this problem, Input are Two integers, adding each other, if a number become over 5, he/she will lose)
반응형
'python-algorithm' 카테고리의 다른 글
백준 6321 IBM 빼기 1 (0) | 2022.10.06 |
---|---|
백준 11557 Yangjojang of The Year (0) | 2022.10.05 |
백준 2605 줄 세우기 (0) | 2022.10.04 |
백준 10988 팰린드롬인지 확인하기 (0) | 2022.10.04 |
백준 2999 비밀 이메일 (0) | 2022.10.03 |
댓글