본문 바로가기
python-algorithm

[백준] 2975

by 무적김두칠 2021. 3. 11.

1
2
3
4
5
6
7
8
while 1:
    a,b,c=input().split()
    a,c=int(a),int(c)
    if a == 0 and c == 0: break
    s=a-c
    if b!='W': s=a+c
    if s<-200 :print("Not allowed")
    elseprint(s)
cs
반응형

'python-algorithm' 카테고리의 다른 글

[백준] 20499  (0) 2021.03.12
[백준] 3507  (0) 2021.03.11
[백준] 20353  (0) 2021.03.11
[백준] 20233  (0) 2021.03.11
[백준] 20232  (0) 2021.03.09

댓글