-Code
q = ["A", "B", "C", "B", "C", "D", "C", "D", "A", "D", "A", "B"]
for _ in range(int(input())):
n = int(input())
print(q[n % len(q) - 1])
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 26209번 Intercepting Information (0) | 2022.12.04 |
---|---|
[백준/파이썬] 26068번 치킨댄스를 추는 곰곰이를 본 임스 2 (0) | 2022.12.04 |
[백준/파이썬] 16316번 Baby Bites (0) | 2022.12.01 |
[백준/파이썬] 21983번 Basalt Breakdown (0) | 2022.11.30 |
[백준/파이썬] 26082번 특정 대문자를 소문자로 바꾸기 (0) | 2022.11.30 |