본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 9907번 ID

by 현장 2022. 11. 25.

-Code

weight = [2, 7, 6, 5, 4, 3, 2]
dic = ['J', 'A', 'B', 'C', 'D', 'E', 'F',
       'G', 'H', 'I', 'Z']
nums = list(map(int, input()))
total = 0

for i in range(len(nums)):
    total += nums[i] * weight[i]
print(dic[total % 11])