結果

問題 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
コンパイル時間 146 ms
コンパイル使用メモリ 11,776 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2023-10-19 03:07:39
合計ジャッジ時間 18,310 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
10,236 KB
testcase_01 AC 152 ms
10,236 KB
testcase_02 AC 155 ms
10,236 KB
testcase_03 AC 156 ms
10,236 KB
testcase_04 AC 151 ms
10,236 KB
testcase_05 WA -
testcase_06 AC 154 ms
10,236 KB
testcase_07 AC 150 ms
10,236 KB
testcase_08 AC 152 ms
10,236 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 155 ms
10,236 KB
testcase_12 AC 157 ms
10,236 KB
testcase_13 AC 150 ms
10,236 KB
testcase_14 AC 152 ms
10,236 KB
testcase_15 AC 152 ms
10,236 KB
testcase_16 AC 153 ms
10,236 KB
testcase_17 AC 151 ms
10,236 KB
testcase_18 AC 163 ms
10,236 KB
testcase_19 AC 164 ms
10,236 KB
testcase_20 AC 161 ms
10,236 KB
testcase_21 AC 165 ms
10,236 KB
testcase_22 AC 162 ms
10,236 KB
testcase_23 AC 170 ms
10,236 KB
testcase_24 AC 164 ms
10,236 KB
testcase_25 AC 167 ms
10,236 KB
testcase_26 AC 162 ms
10,236 KB
testcase_27 AC 161 ms
10,236 KB
testcase_28 AC 168 ms
10,236 KB
testcase_29 AC 165 ms
10,236 KB
testcase_30 AC 177 ms
10,236 KB
testcase_31 AC 165 ms
10,236 KB
testcase_32 AC 163 ms
10,236 KB
testcase_33 AC 166 ms
10,236 KB
testcase_34 AC 169 ms
10,236 KB
testcase_35 AC 169 ms
10,236 KB
testcase_36 AC 170 ms
10,236 KB
testcase_37 AC 167 ms
10,236 KB
testcase_38 AC 169 ms
10,236 KB
testcase_39 AC 167 ms
10,236 KB
testcase_40 AC 165 ms
10,236 KB
testcase_41 AC 165 ms
10,236 KB
testcase_42 AC 162 ms
10,236 KB
testcase_43 AC 161 ms
10,236 KB
testcase_44 AC 165 ms
10,236 KB
testcase_45 AC 166 ms
10,236 KB
testcase_46 AC 165 ms
10,236 KB
testcase_47 AC 166 ms
10,236 KB
testcase_48 AC 202 ms
10,240 KB
testcase_49 AC 186 ms
10,236 KB
testcase_50 AC 184 ms
10,236 KB
testcase_51 AC 186 ms
10,236 KB
testcase_52 AC 190 ms
10,236 KB
testcase_53 AC 184 ms
10,236 KB
testcase_54 AC 190 ms
10,236 KB
testcase_55 AC 184 ms
10,236 KB
testcase_56 AC 191 ms
10,236 KB
testcase_57 AC 182 ms
10,236 KB
testcase_58 AC 183 ms
10,236 KB
testcase_59 AC 186 ms
10,236 KB
testcase_60 AC 181 ms
10,236 KB
testcase_61 AC 186 ms
10,236 KB
testcase_62 AC 186 ms
10,236 KB
testcase_63 AC 163 ms
10,236 KB
testcase_64 AC 182 ms
10,236 KB
testcase_65 AC 185 ms
10,236 KB
testcase_66 AC 165 ms
10,236 KB
testcase_67 AC 162 ms
10,236 KB
testcase_68 AC 184 ms
10,236 KB
testcase_69 AC 162 ms
10,236 KB
testcase_70 AC 190 ms
10,236 KB
testcase_71 AC 186 ms
10,236 KB
testcase_72 AC 189 ms
10,236 KB
testcase_73 AC 168 ms
10,236 KB
testcase_74 AC 167 ms
10,236 KB
testcase_75 AC 165 ms
10,236 KB
testcase_76 AC 674 ms
10,496 KB
testcase_77 AC 181 ms
10,236 KB
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 183 ms
10,236 KB
testcase_81 AC 183 ms
10,236 KB
testcase_82 AC 196 ms
10,236 KB
testcase_83 AC 195 ms
10,240 KB
testcase_84 AC 182 ms
10,236 KB
testcase_85 WA -
testcase_86 AC 201 ms
10,240 KB
testcase_87 AC 186 ms
10,236 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