結果

問題 No.1312 Snake Eyes
ユーザー FromBooskaFromBooska
提出日時 2023-03-03 17:50:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,443 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,072 KB
最終ジャッジ日時 2024-09-17 22:09:15
合計ジャッジ時間 30,939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,864 KB
testcase_01 AC 31 ms
52,480 KB
testcase_02 AC 35 ms
53,560 KB
testcase_03 AC 35 ms
53,092 KB
testcase_04 AC 34 ms
52,544 KB
testcase_05 AC 35 ms
52,496 KB
testcase_06 AC 32 ms
53,068 KB
testcase_07 AC 30 ms
52,660 KB
testcase_08 AC 30 ms
52,888 KB
testcase_09 AC 30 ms
53,420 KB
testcase_10 AC 31 ms
53,856 KB
testcase_11 AC 30 ms
54,092 KB
testcase_12 AC 31 ms
52,220 KB
testcase_13 AC 31 ms
52,208 KB
testcase_14 AC 30 ms
52,368 KB
testcase_15 AC 31 ms
52,192 KB
testcase_16 AC 32 ms
52,884 KB
testcase_17 AC 30 ms
52,736 KB
testcase_18 AC 30 ms
52,944 KB
testcase_19 AC 30 ms
52,928 KB
testcase_20 AC 31 ms
52,208 KB
testcase_21 AC 31 ms
52,524 KB
testcase_22 AC 34 ms
57,588 KB
testcase_23 AC 37 ms
59,648 KB
testcase_24 AC 49 ms
75,732 KB
testcase_25 AC 46 ms
68,644 KB
testcase_26 AC 37 ms
59,268 KB
testcase_27 AC 77 ms
75,544 KB
testcase_28 AC 31 ms
53,100 KB
testcase_29 AC 38 ms
63,064 KB
testcase_30 AC 38 ms
61,860 KB
testcase_31 AC 38 ms
66,220 KB
testcase_32 AC 35 ms
59,516 KB
testcase_33 AC 55 ms
75,544 KB
testcase_34 AC 38 ms
60,892 KB
testcase_35 AC 59 ms
75,756 KB
testcase_36 AC 36 ms
60,632 KB
testcase_37 AC 46 ms
75,664 KB
testcase_38 AC 43 ms
70,444 KB
testcase_39 AC 1,383 ms
75,868 KB
testcase_40 AC 76 ms
75,252 KB
testcase_41 AC 279 ms
75,392 KB
testcase_42 AC 1,418 ms
75,764 KB
testcase_43 AC 684 ms
75,352 KB
testcase_44 AC 286 ms
76,072 KB
testcase_45 AC 76 ms
75,772 KB
testcase_46 AC 1,399 ms
75,712 KB
testcase_47 AC 1,398 ms
75,692 KB
testcase_48 AC 215 ms
75,396 KB
testcase_49 AC 285 ms
75,936 KB
testcase_50 AC 1,369 ms
75,876 KB
testcase_51 AC 1,360 ms
75,520 KB
testcase_52 AC 1,441 ms
75,608 KB
testcase_53 AC 1,399 ms
75,692 KB
testcase_54 AC 750 ms
75,320 KB
testcase_55 AC 1,398 ms
75,532 KB
testcase_56 AC 151 ms
75,564 KB
testcase_57 AC 1,387 ms
75,948 KB
testcase_58 AC 416 ms
75,552 KB
testcase_59 AC 101 ms
75,452 KB
testcase_60 AC 1,395 ms
75,724 KB
testcase_61 AC 297 ms
75,616 KB
testcase_62 AC 116 ms
75,888 KB
testcase_63 AC 36 ms
59,092 KB
testcase_64 AC 35 ms
54,100 KB
testcase_65 AC 35 ms
52,396 KB
testcase_66 AC 38 ms
59,184 KB
testcase_67 AC 35 ms
51,944 KB
testcase_68 AC 33 ms
53,432 KB
testcase_69 AC 35 ms
52,376 KB
testcase_70 AC 33 ms
52,332 KB
testcase_71 AC 31 ms
53,408 KB
testcase_72 AC 30 ms
52,528 KB
testcase_73 AC 31 ms
52,192 KB
testcase_74 AC 31 ms
52,568 KB
testcase_75 AC 31 ms
52,864 KB
testcase_76 AC 213 ms
75,880 KB
testcase_77 AC 1,421 ms
75,528 KB
testcase_78 AC 213 ms
75,632 KB
testcase_79 AC 32 ms
52,616 KB
testcase_80 AC 218 ms
75,592 KB
testcase_81 AC 176 ms
75,648 KB
testcase_82 AC 46 ms
68,816 KB
testcase_83 AC 250 ms
75,676 KB
testcase_84 AC 1,443 ms
75,504 KB
testcase_85 AC 33 ms
53,244 KB
testcase_86 AC 39 ms
52,068 KB
testcase_87 AC 1,392 ms
75,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def base_k(num, k):
    result = set()
    while num > 0:
        amari = num%k
        result.add(amari)
        num -= amari
        num //= k
    return len(result)

def divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

N = int(input())
if N <= 2:
    print(N+1)
    exit()

for i in range(2, min(10**7, N)):
    if base_k(N, i) == 1:
        #print(i, calc) 
        print(i)
        exit()

divs = divisors(N)
for d in divs:
    if d < min(10**7, N):
        continue
    calc = base_k(N, d-1)
    if calc == 1:
        #print(d-1, calc)   
        print(d-1)
        exit()
0