結果

問題 No.1312 Snake Eyes
ユーザー rlangevinrlangevin
提出日時 2023-04-17 19:27:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 76,420 KB
最終ジャッジ日時 2024-10-12 20:37:08
合計ジャッジ時間 36,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 40 ms
52,412 KB
testcase_02 AC 38 ms
53,672 KB
testcase_03 AC 38 ms
52,884 KB
testcase_04 AC 39 ms
53,928 KB
testcase_05 AC 39 ms
52,444 KB
testcase_06 AC 38 ms
52,536 KB
testcase_07 AC 37 ms
52,568 KB
testcase_08 AC 38 ms
53,004 KB
testcase_09 AC 37 ms
53,224 KB
testcase_10 AC 39 ms
53,008 KB
testcase_11 AC 37 ms
52,684 KB
testcase_12 AC 37 ms
53,680 KB
testcase_13 AC 37 ms
52,708 KB
testcase_14 AC 37 ms
53,652 KB
testcase_15 AC 38 ms
52,888 KB
testcase_16 AC 38 ms
52,284 KB
testcase_17 AC 38 ms
53,248 KB
testcase_18 AC 38 ms
53,356 KB
testcase_19 AC 39 ms
53,244 KB
testcase_20 AC 39 ms
52,136 KB
testcase_21 AC 39 ms
53,288 KB
testcase_22 AC 39 ms
52,884 KB
testcase_23 AC 60 ms
67,940 KB
testcase_24 AC 57 ms
67,040 KB
testcase_25 AC 56 ms
66,508 KB
testcase_26 AC 54 ms
65,708 KB
testcase_27 AC 57 ms
67,448 KB
testcase_28 AC 59 ms
67,476 KB
testcase_29 AC 69 ms
73,244 KB
testcase_30 AC 61 ms
70,364 KB
testcase_31 AC 60 ms
69,140 KB
testcase_32 AC 61 ms
69,064 KB
testcase_33 AC 57 ms
67,168 KB
testcase_34 AC 60 ms
68,944 KB
testcase_35 AC 59 ms
68,300 KB
testcase_36 AC 61 ms
69,344 KB
testcase_37 AC 61 ms
69,708 KB
testcase_38 AC 97 ms
75,920 KB
testcase_39 AC 129 ms
75,832 KB
testcase_40 AC 133 ms
75,704 KB
testcase_41 AC 128 ms
76,100 KB
testcase_42 AC 98 ms
76,072 KB
testcase_43 AC 125 ms
75,568 KB
testcase_44 AC 103 ms
75,880 KB
testcase_45 AC 121 ms
75,700 KB
testcase_46 AC 117 ms
75,676 KB
testcase_47 AC 103 ms
75,800 KB
testcase_48 AC 1,224 ms
76,240 KB
testcase_49 AC 1,073 ms
75,960 KB
testcase_50 AC 855 ms
76,080 KB
testcase_51 AC 484 ms
75,868 KB
testcase_52 WA -
testcase_53 AC 975 ms
76,076 KB
testcase_54 AC 1,423 ms
76,420 KB
testcase_55 WA -
testcase_56 AC 795 ms
76,184 KB
testcase_57 WA -
testcase_58 AC 1,041 ms
76,076 KB
testcase_59 AC 440 ms
75,980 KB
testcase_60 WA -
testcase_61 AC 1,347 ms
76,052 KB
testcase_62 AC 587 ms
75,896 KB
testcase_63 AC 95 ms
75,740 KB
testcase_64 AC 139 ms
75,872 KB
testcase_65 AC 240 ms
76,368 KB
testcase_66 AC 55 ms
66,048 KB
testcase_67 AC 38 ms
52,756 KB
testcase_68 AC 143 ms
76,036 KB
testcase_69 AC 64 ms
72,168 KB
testcase_70 AC 1,056 ms
76,384 KB
testcase_71 AC 678 ms
76,152 KB
testcase_72 AC 132 ms
75,752 KB
testcase_73 AC 83 ms
75,704 KB
testcase_74 AC 56 ms
66,568 KB
testcase_75 AC 73 ms
74,332 KB
testcase_76 AC 1,320 ms
76,032 KB
testcase_77 AC 1,359 ms
75,940 KB
testcase_78 AC 1,337 ms
76,144 KB
testcase_79 AC 1,013 ms
76,092 KB
testcase_80 AC 1,344 ms
75,828 KB
testcase_81 AC 1,341 ms
75,960 KB
testcase_82 AC 1,351 ms
76,056 KB
testcase_83 AC 1,342 ms
75,988 KB
testcase_84 AC 1,332 ms
75,948 KB
testcase_85 AC 1,187 ms
76,052 KB
testcase_86 AC 1,158 ms
76,120 KB
testcase_87 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
    print(2)
    exit()
if N == 2:
    print(3)
    exit()

inf = 10 ** 18
def f(p, d):
    if p >= 10 ** 9:
        return inf
    if p >= 10 ** 6 and d >= 4:
        return inf
    if p >= 10 ** 4 and d >= 5:
        return inf
    return (p ** d - 1) // (p - 1)

ans = N - 1
for d in range(2, 45):
    for v in range(1, 10**18):
        if v * f(v + 1, d) > N:
            break
        yes = v + 1
        no = N + 1
        if no <= yes:
            break
        while no - yes != 1:
            mid = (yes + no)//2
            if v * f(mid, d) <= N:
                yes = mid
            else:
                no  = mid
        if v * f(yes, d) == N:
            ans = min(ans, yes)

print(ans)
0