結果

問題 No.1312 Snake Eyes
ユーザー sotanishysotanishy
提出日時 2020-12-13 22:17:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-11-30 13:08:15
合計ジャッジ時間 9,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 85
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
if N == 1:
    print(2)
    exit()
if N == 2:
    print(3)
    exit()
# 1
ans = N - 1
# 2
i = 2
while i * i <= N:
    if N % i == 0 and i < N // i - 1:
        ans = min(ans, N // i - 1)
    i += 1

# >= 3
p = 2
while p * p <= N:
    n = N
    s = set()
    while n > 0:
        s.add(n % p)
        n //= p
    if len(s) == 1:
        ans = min(ans, p)
    p += 1

print(ans)
0