본문 바로가기
Python/백준

백준 - 2028 자가복제수

by sophia02 2022. 9. 29.
n = int(input())
for i in range(n):
    a = input()
    b = str(int(a)*int(a))
    c = list(a)
    c = len(c)
    if str(a) == str(b[-c:]):
        print("YES")
    else:
        print('NO')

'Python > 백준' 카테고리의 다른 글

백준 - 10988 펠린드롬인지 확인하기  (0) 2022.10.01
백준 1009 - 분산처리  (0) 2022.09.30
백준 - 1357 뒤집힌 덧셈  (0) 2022.09.28
백준 - 5585 거스름돈  (0) 2022.09.27
백준 - 1712 손익분기점  (0) 2022.09.26