結果

問題 No.1312 Snake Eyes
ユーザー H3PO4H3PO4
提出日時 2020-12-09 09:05:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 508 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 82,972 KB
最終ジャッジ日時 2024-09-19 01:02:31
合計ジャッジ時間 8,664 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
60,688 KB
testcase_01 AC 36 ms
52,276 KB
testcase_02 AC 38 ms
53,364 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
53,384 KB
testcase_06 AC 36 ms
52,260 KB
testcase_07 AC 36 ms
53,044 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 32 ms
52,624 KB
testcase_11 AC 32 ms
52,804 KB
testcase_12 AC 36 ms
53,128 KB
testcase_13 AC 33 ms
52,544 KB
testcase_14 WA -
testcase_15 AC 34 ms
52,820 KB
testcase_16 AC 33 ms
53,996 KB
testcase_17 WA -
testcase_18 AC 33 ms
53,628 KB
testcase_19 WA -
testcase_20 AC 32 ms
53,268 KB
testcase_21 AC 35 ms
53,844 KB
testcase_22 AC 34 ms
52,072 KB
testcase_23 AC 61 ms
75,268 KB
testcase_24 AC 46 ms
66,356 KB
testcase_25 AC 35 ms
54,524 KB
testcase_26 AC 40 ms
61,496 KB
testcase_27 AC 36 ms
56,048 KB
testcase_28 AC 45 ms
68,272 KB
testcase_29 AC 35 ms
55,192 KB
testcase_30 AC 54 ms
75,208 KB
testcase_31 AC 52 ms
73,392 KB
testcase_32 AC 45 ms
64,580 KB
testcase_33 AC 33 ms
52,084 KB
testcase_34 AC 44 ms
68,188 KB
testcase_35 AC 37 ms
54,848 KB
testcase_36 AC 47 ms
70,424 KB
testcase_37 AC 49 ms
70,380 KB
testcase_38 AC 73 ms
75,556 KB
testcase_39 AC 57 ms
75,540 KB
testcase_40 AC 44 ms
60,944 KB
testcase_41 AC 74 ms
75,752 KB
testcase_42 AC 44 ms
62,536 KB
testcase_43 AC 50 ms
70,180 KB
testcase_44 AC 52 ms
69,104 KB
testcase_45 AC 43 ms
60,656 KB
testcase_46 AC 51 ms
71,532 KB
testcase_47 AC 40 ms
58,204 KB
testcase_48 AC 185 ms
75,764 KB
testcase_49 AC 100 ms
75,688 KB
testcase_50 AC 69 ms
75,492 KB
testcase_51 AC 64 ms
75,292 KB
testcase_52 AC 67 ms
75,576 KB
testcase_53 AC 84 ms
75,768 KB
testcase_54 AC 70 ms
75,364 KB
testcase_55 AC 58 ms
75,324 KB
testcase_56 AC 132 ms
75,588 KB
testcase_57 AC 59 ms
75,492 KB
testcase_58 AC 86 ms
75,724 KB
testcase_59 AC 83 ms
75,604 KB
testcase_60 AC 48 ms
65,420 KB
testcase_61 AC 88 ms
75,532 KB
testcase_62 AC 81 ms
75,484 KB
testcase_63 AC 48 ms
69,252 KB
testcase_64 WA -
testcase_65 WA -
testcase_66 AC 55 ms
75,392 KB
testcase_67 AC 41 ms
62,680 KB
testcase_68 AC 43 ms
64,276 KB
testcase_69 AC 46 ms
69,704 KB
testcase_70 AC 111 ms
75,696 KB
testcase_71 AC 75 ms
75,620 KB
testcase_72 WA -
testcase_73 AC 47 ms
69,436 KB
testcase_74 AC 40 ms
62,824 KB
testcase_75 WA -
testcase_76 TLE -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt

N = int(input())

ans = N - 1
for i in range(2, isqrt(N) + 1):
    if N % i or i ** 2 == N:
        continue
    div = N // i
    for x in range(1, 50):
        # bisect
        l, r = 1, div
        while r - l > 1:
            m = (r + l) // 2
            if (m ** x - 1) < div * (m - 1):
                l = m
            else:
                r = m
        if (r ** x - 1) == div * (r - 1):
            ans = min(ans, r)
            # print(f'div={div}, x={x}, p={r}')
print(ans)
0