結果

問題 No.1312 Snake Eyes
ユーザー Kiri8128Kiri8128
提出日時 2020-12-09 00:03:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 75,748 KB
最終ジャッジ日時 2024-09-18 21:52:05
合計ジャッジ時間 8,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,872 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 39 ms
52,492 KB
testcase_03 AC 34 ms
52,416 KB
testcase_04 AC 35 ms
52,396 KB
testcase_05 AC 36 ms
53,348 KB
testcase_06 AC 33 ms
53,292 KB
testcase_07 AC 35 ms
52,944 KB
testcase_08 AC 34 ms
52,800 KB
testcase_09 AC 33 ms
52,120 KB
testcase_10 AC 34 ms
52,876 KB
testcase_11 AC 34 ms
52,428 KB
testcase_12 AC 33 ms
52,424 KB
testcase_13 AC 33 ms
52,400 KB
testcase_14 AC 32 ms
52,796 KB
testcase_15 AC 34 ms
53,428 KB
testcase_16 AC 34 ms
53,068 KB
testcase_17 AC 33 ms
52,136 KB
testcase_18 AC 32 ms
52,228 KB
testcase_19 AC 34 ms
52,080 KB
testcase_20 AC 34 ms
52,080 KB
testcase_21 AC 33 ms
52,860 KB
testcase_22 AC 39 ms
59,920 KB
testcase_23 AC 39 ms
59,048 KB
testcase_24 AC 39 ms
59,332 KB
testcase_25 AC 37 ms
59,584 KB
testcase_26 AC 37 ms
58,780 KB
testcase_27 AC 51 ms
58,808 KB
testcase_28 AC 34 ms
52,212 KB
testcase_29 AC 39 ms
58,772 KB
testcase_30 AC 40 ms
60,612 KB
testcase_31 AC 38 ms
58,556 KB
testcase_32 AC 38 ms
59,556 KB
testcase_33 AC 42 ms
59,368 KB
testcase_34 AC 35 ms
59,308 KB
testcase_35 AC 45 ms
58,588 KB
testcase_36 AC 38 ms
58,996 KB
testcase_37 AC 38 ms
59,468 KB
testcase_38 AC 40 ms
58,908 KB
testcase_39 WA -
testcase_40 AC 51 ms
59,264 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 52 ms
59,472 KB
testcase_46 WA -
testcase_47 AC 102 ms
59,704 KB
testcase_48 AC 136 ms
75,252 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 103 ms
75,464 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 76 ms
75,748 KB
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 91 ms
75,604 KB
testcase_63 AC 43 ms
59,056 KB
testcase_64 AC 38 ms
52,208 KB
testcase_65 AC 36 ms
53,020 KB
testcase_66 AC 40 ms
60,148 KB
testcase_67 AC 37 ms
52,756 KB
testcase_68 AC 36 ms
52,532 KB
testcase_69 AC 36 ms
52,200 KB
testcase_70 AC 35 ms
53,296 KB
testcase_71 AC 34 ms
52,680 KB
testcase_72 AC 33 ms
52,032 KB
testcase_73 AC 33 ms
52,948 KB
testcase_74 AC 32 ms
51,872 KB
testcase_75 AC 32 ms
52,840 KB
testcase_76 AC 139 ms
75,404 KB
testcase_77 AC 141 ms
75,432 KB
testcase_78 AC 147 ms
75,132 KB
testcase_79 AC 34 ms
52,348 KB
testcase_80 AC 139 ms
74,872 KB
testcase_81 AC 122 ms
74,924 KB
testcase_82 AC 45 ms
62,224 KB
testcase_83 WA -
testcase_84 AC 138 ms
75,048 KB
testcase_85 AC 36 ms
52,364 KB
testcase_86 AC 35 ms
52,328 KB
testcase_87 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for p in range(2, 10 ** 6 + 10):
    s = 0
    a = 1
    f = 0
    while s < N:
        s += a
        a *= p
        if N % s == 0 and N // s < p:
            f = 1
            break
    if f:
        print(p)
        break
else:
    print(N - 1)
0