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

[백준/파이썬] 13366번 Math Contest

by 현장 2024. 9. 11.

-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")