結果

問題 No.1312 Snake Eyes
ユーザー 37zigen37zigen
提出日時 2020-12-09 01:48:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-18 23:13:41
合計ジャッジ時間 19,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
10,752 KB
testcase_01 AC 158 ms
10,752 KB
testcase_02 AC 156 ms
10,752 KB
testcase_03 AC 158 ms
10,752 KB
testcase_04 AC 156 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 155 ms
10,880 KB
testcase_07 AC 159 ms
10,752 KB
testcase_08 AC 166 ms
10,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 156 ms
10,880 KB
testcase_12 AC 158 ms
10,752 KB
testcase_13 AC 162 ms
10,752 KB
testcase_14 AC 163 ms
10,752 KB
testcase_15 AC 161 ms
10,880 KB
testcase_16 AC 157 ms
10,752 KB
testcase_17 AC 157 ms
10,752 KB
testcase_18 AC 180 ms
10,880 KB
testcase_19 AC 180 ms
10,752 KB
testcase_20 AC 184 ms
10,752 KB
testcase_21 AC 190 ms
10,880 KB
testcase_22 AC 182 ms
10,880 KB
testcase_23 AC 183 ms
10,752 KB
testcase_24 AC 179 ms
10,752 KB
testcase_25 AC 184 ms
10,880 KB
testcase_26 AC 175 ms
10,752 KB
testcase_27 AC 184 ms
10,752 KB
testcase_28 AC 183 ms
10,752 KB
testcase_29 AC 180 ms
10,624 KB
testcase_30 AC 181 ms
10,752 KB
testcase_31 AC 181 ms
10,752 KB
testcase_32 AC 181 ms
10,880 KB
testcase_33 AC 181 ms
10,880 KB
testcase_34 AC 181 ms
10,752 KB
testcase_35 AC 181 ms
10,752 KB
testcase_36 AC 185 ms
10,752 KB
testcase_37 AC 177 ms
10,880 KB
testcase_38 AC 181 ms
10,752 KB
testcase_39 AC 178 ms
10,752 KB
testcase_40 AC 179 ms
10,752 KB
testcase_41 AC 181 ms
10,752 KB
testcase_42 AC 177 ms
10,752 KB
testcase_43 AC 179 ms
10,752 KB
testcase_44 AC 177 ms
10,752 KB
testcase_45 AC 178 ms
10,880 KB
testcase_46 AC 180 ms
10,752 KB
testcase_47 AC 178 ms
10,752 KB
testcase_48 AC 213 ms
10,752 KB
testcase_49 AC 201 ms
10,752 KB
testcase_50 AC 203 ms
10,880 KB
testcase_51 AC 198 ms
10,752 KB
testcase_52 AC 203 ms
10,752 KB
testcase_53 AC 202 ms
10,752 KB
testcase_54 AC 199 ms
10,752 KB
testcase_55 AC 205 ms
10,752 KB
testcase_56 AC 211 ms
10,752 KB
testcase_57 AC 195 ms
10,752 KB
testcase_58 AC 202 ms
10,752 KB
testcase_59 AC 198 ms
10,752 KB
testcase_60 AC 197 ms
10,880 KB
testcase_61 AC 197 ms
10,880 KB
testcase_62 AC 198 ms
10,752 KB
testcase_63 AC 179 ms
10,880 KB
testcase_64 AC 204 ms
10,752 KB
testcase_65 AC 195 ms
11,008 KB
testcase_66 AC 185 ms
10,752 KB
testcase_67 AC 180 ms
10,752 KB
testcase_68 AC 198 ms
10,880 KB
testcase_69 AC 178 ms
10,752 KB
testcase_70 AC 214 ms
10,752 KB
testcase_71 AC 201 ms
10,752 KB
testcase_72 AC 200 ms
10,752 KB
testcase_73 AC 177 ms
10,752 KB
testcase_74 AC 179 ms
10,752 KB
testcase_75 AC 176 ms
10,752 KB
testcase_76 AC 736 ms
11,008 KB
testcase_77 AC 199 ms
10,752 KB
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 198 ms
10,752 KB
testcase_81 AC 203 ms
10,880 KB
testcase_82 AC 204 ms
10,880 KB
testcase_83 AC 217 ms
10,752 KB
testcase_84 AC 196 ms
11,008 KB
testcase_85 WA -
testcase_86 AC 217 ms
10,752 KB
testcase_87 AC 194 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
div=[]
for d in range(1,1000000):
    if N%d==0:
        div.append(d)
        div.append(N//d)

ans = N + 1

for d in div:
    n = N // d
    #   1 + a + ... + a^{L-1}
    for L in range(1,60):
        ok = n + 1 if L == 1 else (1+int(math.pow(n, 1/(L-1))))
        ok = min(ok, n + 1)
        ng = d + 1
        while ok - ng > 1:
            m = (ok + ng) // 2
            if (m**L - 1) / (m - 1) >= n:
                ok = m
            else:
                ng = m
        if ok > d and (ok**L - 1) % (ok - 1) == 0 and (ok**L - 1) // (ok - 1) == n:
            ans = min(ans, ok)
print(ans)
0