본문 바로가기
python-algorithm

[백준] 1871

by 무적김두칠 2021. 1. 6.

1
2
3
4
5
6
7
import sys
for _ in range(int(sys.stdin.readline())):
    l,d=sys.stdin.readline().split('-')
    cnt= (ord (l[0])-65)*(26**2+ (ord(l[1])-65)*26+ord (l[2])-65
    d= int(d)
    if abs(cnt-d)>100print("not nice")
    elseprint("nice")
cs
반응형

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

[백준] 2028  (0) 2021.01.06
[백준] 1919  (0) 2021.01.06
[백준] 1813  (0) 2021.01.06
[백준] 1773  (0) 2021.01.06
[백준] 1731  (0) 2021.01.06

댓글