보안을 그리다, 훈이

[Baekjoon/Python3] 1871번 좋은 자동차 번호판 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 1871번 좋은 자동차 번호판

HooNeee 2020. 12. 3. 01:05

[Baekjoon/Python3] 1871번 좋은 자동차 번호판

 

www.acmicpc.net/problem/1871

 

1871번: 좋은 자동차 번호판

각각의 자동차 번호판에 대해서, 좋은 번호판이면 "nice"를, 아니면 "not nice"를 출력한다.

www.acmicpc.net

 

n = int(input())
for j in range(n):
    alp, nnum = input().split('-')
    i, anum = 2, 0
    for a in alp:
        anum += (ord(a) - 65) * (26 ** i)
        i -= 1
        cp = abs(anum - int(nnum))
    if cp <= 100:
        print('nice')
    else:
        print('not nice')
Comments