結果

問題 No.1312 Snake Eyes
ユーザー rlangevinrlangevin
提出日時 2023-04-17 19:22:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 821 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 77,356 KB
最終ジャッジ日時 2024-10-12 20:33:39
合計ジャッジ時間 34,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
65,060 KB
testcase_01 AC 48 ms
65,436 KB
testcase_02 AC 49 ms
65,976 KB
testcase_03 AC 38 ms
52,296 KB
testcase_04 AC 49 ms
65,436 KB
testcase_05 AC 48 ms
66,492 KB
testcase_06 AC 52 ms
64,956 KB
testcase_07 AC 49 ms
66,532 KB
testcase_08 AC 48 ms
65,416 KB
testcase_09 AC 48 ms
66,608 KB
testcase_10 AC 49 ms
65,396 KB
testcase_11 AC 48 ms
65,484 KB
testcase_12 AC 49 ms
66,588 KB
testcase_13 AC 48 ms
65,736 KB
testcase_14 AC 48 ms
65,152 KB
testcase_15 AC 49 ms
65,920 KB
testcase_16 AC 49 ms
65,280 KB
testcase_17 AC 48 ms
65,608 KB
testcase_18 AC 51 ms
65,340 KB
testcase_19 AC 50 ms
65,500 KB
testcase_20 AC 50 ms
66,808 KB
testcase_21 AC 49 ms
65,772 KB
testcase_22 AC 48 ms
66,144 KB
testcase_23 AC 71 ms
76,284 KB
testcase_24 AC 66 ms
74,104 KB
testcase_25 AC 62 ms
73,240 KB
testcase_26 AC 62 ms
73,476 KB
testcase_27 AC 66 ms
74,168 KB
testcase_28 AC 66 ms
74,148 KB
testcase_29 AC 74 ms
76,164 KB
testcase_30 AC 74 ms
76,288 KB
testcase_31 AC 71 ms
76,480 KB
testcase_32 AC 74 ms
76,472 KB
testcase_33 AC 65 ms
73,444 KB
testcase_34 AC 73 ms
76,348 KB
testcase_35 AC 72 ms
76,656 KB
testcase_36 AC 72 ms
76,436 KB
testcase_37 AC 72 ms
76,356 KB
testcase_38 AC 95 ms
76,544 KB
testcase_39 AC 120 ms
76,552 KB
testcase_40 AC 117 ms
76,720 KB
testcase_41 AC 115 ms
76,672 KB
testcase_42 AC 96 ms
76,628 KB
testcase_43 AC 113 ms
76,772 KB
testcase_44 AC 99 ms
76,436 KB
testcase_45 AC 104 ms
76,984 KB
testcase_46 AC 109 ms
76,660 KB
testcase_47 AC 103 ms
76,444 KB
testcase_48 AC 1,136 ms
76,796 KB
testcase_49 AC 968 ms
77,092 KB
testcase_50 AC 776 ms
77,012 KB
testcase_51 AC 428 ms
77,112 KB
testcase_52 WA -
testcase_53 AC 901 ms
76,932 KB
testcase_54 AC 1,068 ms
76,776 KB
testcase_55 WA -
testcase_56 AC 727 ms
76,876 KB
testcase_57 WA -
testcase_58 AC 952 ms
76,952 KB
testcase_59 AC 389 ms
76,744 KB
testcase_60 WA -
testcase_61 AC 1,223 ms
76,984 KB
testcase_62 AC 524 ms
76,748 KB
testcase_63 AC 93 ms
76,724 KB
testcase_64 AC 121 ms
76,780 KB
testcase_65 AC 209 ms
76,980 KB
testcase_66 AC 64 ms
73,196 KB
testcase_67 AC 48 ms
66,364 KB
testcase_68 AC 128 ms
76,612 KB
testcase_69 AC 75 ms
76,632 KB
testcase_70 AC 968 ms
76,764 KB
testcase_71 AC 607 ms
77,152 KB
testcase_72 AC 120 ms
76,784 KB
testcase_73 AC 90 ms
76,604 KB
testcase_74 AC 65 ms
73,280 KB
testcase_75 AC 83 ms
76,728 KB
testcase_76 AC 1,224 ms
76,748 KB
testcase_77 WA -
testcase_78 AC 1,234 ms
76,752 KB
testcase_79 AC 923 ms
77,052 KB
testcase_80 AC 1,235 ms
76,968 KB
testcase_81 AC 1,261 ms
76,856 KB
testcase_82 AC 1,238 ms
76,796 KB
testcase_83 AC 1,236 ms
76,452 KB
testcase_84 WA -
testcase_85 AC 1,076 ms
76,776 KB
testcase_86 AC 1,060 ms
76,944 KB
testcase_87 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

P = [[1] * 45 for i in range(1000)]
inf = 10 ** 18
for i in range(1000):
    for j in range(44):
        P[i][j + 1] = min(inf, P[i][j] * i)

def f(p, d):
    if p >= 10 ** 9:
        return inf
    if p >= 10 ** 6 and d >= 3:
        return inf
    if p >= 10 ** 4 and d >= 4:
        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