-Code
from sys import stdin
for _ in range(int(stdin.readline())):
num = list(map(int, list(stdin.readline().strip())))
res = sum(num)
print("YES" if res % 9 == 0 else "NO")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32184번 디미고에 가고 싶어! (0) | 2024.09.13 |
---|---|
[백준/파이썬] 24807번 Math Homework (0) | 2024.09.12 |
[백준/파이썬] 32215번 코드마스터 2024 (0) | 2024.09.10 |
[백준/파이썬] 28464번 Potato (0) | 2024.09.09 |
[백준/파이썬] 10101번 삼각형 외우기 (1) | 2024.09.07 |