結果

問題 No.1312 Snake Eyes
ユーザー りあんりあん
提出日時 2020-11-09 23:43:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 508 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-07-23 21:11:58
合計ジャッジ時間 21,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
16,256 KB
testcase_01 AC 171 ms
10,624 KB
testcase_02 AC 169 ms
10,624 KB
testcase_03 AC 158 ms
10,752 KB
testcase_04 AC 168 ms
10,624 KB
testcase_05 AC 162 ms
10,624 KB
testcase_06 AC 167 ms
10,624 KB
testcase_07 AC 170 ms
10,752 KB
testcase_08 AC 169 ms
10,624 KB
testcase_09 AC 167 ms
10,624 KB
testcase_10 AC 165 ms
10,624 KB
testcase_11 AC 164 ms
10,624 KB
testcase_12 AC 171 ms
10,624 KB
testcase_13 AC 174 ms
10,624 KB
testcase_14 AC 185 ms
10,752 KB
testcase_15 AC 165 ms
10,624 KB
testcase_16 AC 165 ms
10,624 KB
testcase_17 AC 175 ms
10,624 KB
testcase_18 AC 189 ms
10,624 KB
testcase_19 AC 189 ms
10,624 KB
testcase_20 AC 188 ms
10,624 KB
testcase_21 AC 191 ms
10,624 KB
testcase_22 AC 181 ms
10,624 KB
testcase_23 AC 272 ms
10,624 KB
testcase_24 AC 198 ms
10,624 KB
testcase_25 AC 189 ms
10,752 KB
testcase_26 AC 192 ms
10,624 KB
testcase_27 AC 187 ms
10,752 KB
testcase_28 AC 207 ms
10,752 KB
testcase_29 AC 185 ms
10,624 KB
testcase_30 AC 238 ms
10,624 KB
testcase_31 AC 216 ms
10,624 KB
testcase_32 AC 199 ms
10,752 KB
testcase_33 AC 187 ms
10,752 KB
testcase_34 AC 214 ms
10,624 KB
testcase_35 AC 188 ms
10,624 KB
testcase_36 AC 219 ms
10,624 KB
testcase_37 AC 209 ms
10,752 KB
testcase_38 AC 263 ms
10,624 KB
testcase_39 AC 188 ms
10,752 KB
testcase_40 AC 186 ms
10,624 KB
testcase_41 AC 233 ms
10,752 KB
testcase_42 AC 181 ms
10,752 KB
testcase_43 AC 187 ms
10,624 KB
testcase_44 AC 190 ms
10,624 KB
testcase_45 AC 181 ms
10,624 KB
testcase_46 AC 184 ms
10,624 KB
testcase_47 AC 181 ms
10,752 KB
testcase_48 AC 444 ms
10,752 KB
testcase_49 AC 260 ms
10,624 KB
testcase_50 AC 224 ms
10,624 KB
testcase_51 AC 217 ms
10,624 KB
testcase_52 AC 215 ms
10,624 KB
testcase_53 AC 232 ms
10,624 KB
testcase_54 AC 219 ms
10,752 KB
testcase_55 AC 211 ms
10,752 KB
testcase_56 AC 357 ms
10,752 KB
testcase_57 AC 207 ms
10,624 KB
testcase_58 AC 239 ms
10,752 KB
testcase_59 AC 261 ms
10,752 KB
testcase_60 AC 204 ms
10,624 KB
testcase_61 AC 239 ms
10,624 KB
testcase_62 AC 245 ms
10,624 KB
testcase_63 AC 191 ms
10,624 KB
testcase_64 AC 223 ms
10,752 KB
testcase_65 AC 205 ms
10,624 KB
testcase_66 AC 257 ms
10,624 KB
testcase_67 AC 211 ms
10,624 KB
testcase_68 AC 203 ms
10,624 KB
testcase_69 AC 203 ms
10,624 KB
testcase_70 AC 280 ms
10,624 KB
testcase_71 AC 237 ms
10,624 KB
testcase_72 AC 250 ms
10,752 KB
testcase_73 AC 188 ms
10,624 KB
testcase_74 AC 191 ms
10,752 KB
testcase_75 AC 191 ms
10,752 KB
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(1, 10 ** 6 + 1):
    if n % i != 0:
        continue
    s = n // i
    for j in range(2, 41):
        lower = 1
        upper = 10 ** 12
        while lower + 1 < upper:
            p = (lower + upper) // 2
            sm = (p ** j - 1) // (p - 1)
            if sm == s:
                if i < p:
                    ans = min(ans, p)
                break
            if sm < s:
                lower = p
            else:
                upper = p

print(ans)
0