지나가던 개발자

[Python] 백준 2028번(자기복제수) 문제 풀이 본문

PS/Python

[Python] 백준 2028번(자기복제수) 문제 풀이

KwonYongHyeon 2022. 9. 3. 20:13

 

def 자기복제수(num):
    if str(num**2)[-len(str(num)):] == str(num):
        return "YES"
    return "NO"
for i in range(int(input())):
    print(자기복제수(int(input())))

 

 겉멋만 든 영어 변수명을 거부합니다... 라기보다는 자기복제수를 어케 번역해야 적절한 변수명이 나올지 모르겠어서 그냥 한글로 했다.

Comments