結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,540 KB
testcase_01 AC 33 ms
53,400 KB
testcase_02 AC 32 ms
53,304 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
52,400 KB
testcase_06 AC 34 ms
52,920 KB
testcase_07 AC 33 ms
53,132 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 32 ms
53,112 KB
testcase_11 AC 33 ms
53,964 KB
testcase_12 AC 33 ms
53,368 KB
testcase_13 AC 32 ms
54,444 KB
testcase_14 WA -
testcase_15 AC 33 ms
54,048 KB
testcase_16 AC 34 ms
53,076 KB
testcase_17 WA -
testcase_18 AC 34 ms
52,680 KB
testcase_19 WA -
testcase_20 AC 35 ms
54,232 KB
testcase_21 AC 36 ms
54,792 KB
testcase_22 AC 32 ms
52,812 KB
testcase_23 AC 57 ms
75,664 KB
testcase_24 AC 43 ms
66,644 KB
testcase_25 AC 36 ms
54,864 KB
testcase_26 AC 43 ms
61,164 KB
testcase_27 AC 38 ms
56,404 KB
testcase_28 AC 49 ms
68,460 KB
testcase_29 AC 35 ms
54,988 KB
testcase_30 AC 53 ms
75,616 KB
testcase_31 AC 49 ms
73,820 KB
testcase_32 AC 42 ms
66,020 KB
testcase_33 AC 32 ms
54,368 KB
testcase_34 AC 43 ms
67,720 KB
testcase_35 AC 34 ms
55,544 KB
testcase_36 AC 46 ms
71,148 KB
testcase_37 AC 47 ms
70,416 KB
testcase_38 AC 70 ms
75,504 KB
testcase_39 AC 53 ms
75,488 KB
testcase_40 AC 41 ms
60,568 KB
testcase_41 AC 69 ms
75,528 KB
testcase_42 AC 42 ms
62,980 KB
testcase_43 AC 48 ms
70,232 KB
testcase_44 AC 48 ms
70,188 KB
testcase_45 AC 40 ms
60,608 KB
testcase_46 AC 48 ms
71,000 KB
testcase_47 AC 36 ms
59,368 KB
testcase_48 AC 185 ms
75,824 KB
testcase_49 AC 107 ms
76,188 KB
testcase_50 AC 75 ms
75,576 KB
testcase_51 AC 70 ms
75,580 KB
testcase_52 AC 71 ms
75,936 KB
testcase_53 AC 85 ms
75,892 KB
testcase_54 AC 72 ms
75,652 KB
testcase_55 AC 59 ms
75,720 KB
testcase_56 AC 131 ms
75,776 KB
testcase_57 AC 59 ms
75,444 KB
testcase_58 AC 85 ms
75,960 KB
testcase_59 AC 85 ms
75,644 KB
testcase_60 AC 56 ms
66,460 KB
testcase_61 AC 86 ms
75,656 KB
testcase_62 AC 77 ms
75,600 KB
testcase_63 AC 45 ms
69,080 KB
testcase_64 WA -
testcase_65 WA -
testcase_66 AC 54 ms
75,560 KB
testcase_67 AC 40 ms
63,388 KB
testcase_68 AC 42 ms
65,688 KB
testcase_69 AC 44 ms
70,376 KB
testcase_70 AC 103 ms
75,628 KB
testcase_71 AC 75 ms
75,944 KB
testcase_72 WA -
testcase_73 AC 47 ms
69,412 KB
testcase_74 AC 41 ms
63,420 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 #

N = int(input())

ans = N - 1
for i in range(2, int(N**.5) + 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