보안을 그리다, 훈이

[Baekjoon/Python3] 3062번 수 뒤집기 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 3062번 수 뒤집기

HooNeee 2020. 12. 4. 17:23
t = int(input())
for i in range(t):
    n = input()
    rn = ''
    for j in n:
        rn = j + rn
    num = str(int(n) + int(rn))
    for k in range(len(str(num)) // 2):
        if num[k] != num[-(k+1)]:
            print('NO')
            break
    else:   # all
        print('YES')

[Baekjoon/Python3] 3062번 수 뒤집기

 

www.acmicpc.net/problem/3062

 

3062번: 수 뒤집기

수 124를 뒤집으면 421이 되고 이 두 수를 합하면 545가 된다. 124와 같이 원래 수와 뒤집은 수를 합한 수가 좌우 대칭이 되는지 테스트 하는 프로그램을 작성하시오.

www.acmicpc.net

 

 

Comments