結果

問題 No.1312 Snake Eyes
ユーザー AEnAEn
提出日時 2022-09-02 15:37:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 75,924 KB
最終ジャッジ日時 2024-11-15 20:32:09
合計ジャッジ時間 8,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,532 KB
testcase_01 AC 39 ms
52,072 KB
testcase_02 AC 40 ms
52,512 KB
testcase_03 AC 39 ms
52,920 KB
testcase_04 AC 40 ms
52,880 KB
testcase_05 AC 39 ms
52,108 KB
testcase_06 AC 39 ms
52,600 KB
testcase_07 AC 43 ms
52,300 KB
testcase_08 AC 40 ms
52,216 KB
testcase_09 AC 40 ms
53,788 KB
testcase_10 AC 39 ms
52,372 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 38 ms
52,272 KB
testcase_13 AC 39 ms
52,028 KB
testcase_14 AC 39 ms
52,892 KB
testcase_15 AC 40 ms
51,816 KB
testcase_16 AC 40 ms
52,140 KB
testcase_17 AC 39 ms
52,024 KB
testcase_18 AC 39 ms
52,748 KB
testcase_19 AC 42 ms
52,832 KB
testcase_20 AC 39 ms
52,240 KB
testcase_21 AC 39 ms
52,644 KB
testcase_22 AC 41 ms
53,124 KB
testcase_23 AC 51 ms
61,472 KB
testcase_24 AC 47 ms
60,460 KB
testcase_25 AC 46 ms
60,944 KB
testcase_26 AC 45 ms
60,356 KB
testcase_27 AC 48 ms
61,676 KB
testcase_28 AC 45 ms
58,908 KB
testcase_29 AC 49 ms
60,792 KB
testcase_30 AC 46 ms
60,228 KB
testcase_31 AC 49 ms
60,840 KB
testcase_32 AC 48 ms
61,888 KB
testcase_33 AC 44 ms
59,028 KB
testcase_34 AC 49 ms
61,532 KB
testcase_35 AC 48 ms
61,256 KB
testcase_36 AC 48 ms
61,072 KB
testcase_37 AC 48 ms
60,632 KB
testcase_38 AC 54 ms
64,156 KB
testcase_39 AC 54 ms
64,316 KB
testcase_40 AC 54 ms
64,268 KB
testcase_41 AC 54 ms
64,524 KB
testcase_42 AC 54 ms
64,704 KB
testcase_43 AC 54 ms
64,776 KB
testcase_44 AC 53 ms
64,320 KB
testcase_45 AC 54 ms
64,100 KB
testcase_46 AC 54 ms
64,088 KB
testcase_47 AC 54 ms
64,580 KB
testcase_48 AC 110 ms
75,532 KB
testcase_49 AC 104 ms
75,924 KB
testcase_50 AC 95 ms
75,760 KB
testcase_51 AC 77 ms
75,408 KB
testcase_52 AC 115 ms
75,436 KB
testcase_53 AC 100 ms
75,392 KB
testcase_54 AC 111 ms
75,548 KB
testcase_55 AC 82 ms
75,424 KB
testcase_56 AC 90 ms
75,664 KB
testcase_57 AC 90 ms
75,668 KB
testcase_58 AC 103 ms
75,516 KB
testcase_59 AC 75 ms
75,712 KB
testcase_60 AC 90 ms
75,660 KB
testcase_61 AC 114 ms
75,432 KB
testcase_62 AC 80 ms
75,564 KB
testcase_63 AC 49 ms
62,080 KB
testcase_64 AC 54 ms
65,632 KB
testcase_65 AC 60 ms
68,504 KB
testcase_66 AC 43 ms
58,368 KB
testcase_67 AC 40 ms
52,732 KB
testcase_68 AC 56 ms
64,700 KB
testcase_69 AC 49 ms
63,132 KB
testcase_70 AC 105 ms
75,648 KB
testcase_71 AC 85 ms
75,752 KB
testcase_72 AC 55 ms
65,556 KB
testcase_73 AC 49 ms
61,896 KB
testcase_74 AC 46 ms
61,580 KB
testcase_75 AC 48 ms
61,744 KB
testcase_76 AC 115 ms
75,520 KB
testcase_77 AC 116 ms
75,532 KB
testcase_78 AC 115 ms
75,676 KB
testcase_79 AC 101 ms
75,608 KB
testcase_80 AC 117 ms
75,580 KB
testcase_81 AC 115 ms
75,780 KB
testcase_82 AC 115 ms
75,504 KB
testcase_83 AC 115 ms
75,440 KB
testcase_84 AC 115 ms
75,704 KB
testcase_85 AC 111 ms
75,628 KB
testcase_86 AC 107 ms
75,628 KB
testcase_87 AC 86 ms
75,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

res = float('inf')
for i in range(1, N+1):
    if i*i>N:
        break
    if N%i==0:
        if N//i-1>i:
            res = min(res, N//i-1)
for i in range(1, 40):
    f = False
    for j in range(2,N+1):
        sm = 1
        for k in range(i+1):
            sm += pow(j, k+1)
            if sm>N:
                f = True
                break
        else:
            if N%sm == 0 and N//sm<j:
                res = min(res, j)
        if f:
            break
print(res)
0