RUBY

[백준] 회문인 수 본문

PS/BOJ

[백준] 회문인 수

RUBY_루비 2024. 2. 18. 23:00

출처:: https://www.acmicpc.net/problem/11068

분류:: Brute Force

 

1. 문제 이해 및 해결과정

 

 

 

2. 풀이방법

t = int(input())

def isPalindrome(n, base):
    digit = []

    while n > 0 :
        digit.append(n % base)
        n//=base
    
    for i in range(len(digit)//2):
        if digit[i] != digit[len(digit)-i-1]: #팰린드롬 아닌 경우
            return 0
        
    return 1

for _ in range(t):
    n = int(input())
    sol =0

    for i in range(2,65):
        sol = isPalindrome(n,i)
        if sol:
            break;
    
    print(sol)

 

3. 오답원인

 

4. 알게된 점

 

'PS > BOJ' 카테고리의 다른 글

[백준]ACM 호텔  (0) 2024.02.18
[백준] 판화  (0) 2024.02.18
[백준]진법 변환 2  (0) 2024.02.18
[백준] 유레카 이론  (0) 2024.02.18
[백준] 줄 세우기  (0) 2024.02.17
Comments