-Code
s = input()
transform = ""
for w in s[4:] + s[:4]:
if w.isalpha():
transform += str(ord(w) - 55)
else:
transform += w
print("correct" if int(transform) % 97 == 1 else "incorrect")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 31403번 A + B - C (0) | 2024.02.07 |
---|---|
[백준/파이썬] 17273번 카드 공장 (Small) (0) | 2024.02.05 |
[백준/파이썬] 24175번 Tokyo2020 (0) | 2024.02.03 |
[백준/파이썬] 30455번 이제는 더 이상 물러날 곳이 없다 (0) | 2024.02.02 |
[백준/파이썬] 26565번 Time Limits (0) | 2024.02.01 |