結果

問題 No.1664 Unstable f(n)
ユーザー flippergoflippergo
提出日時 2024-10-27 23:26:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 70,988 KB
最終ジャッジ日時 2024-10-27 23:26:27
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,580 KB
testcase_01 AC 44 ms
65,344 KB
testcase_02 AC 42 ms
61,368 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
52,836 KB
testcase_07 AC 38 ms
53,292 KB
testcase_08 AC 37 ms
53,500 KB
testcase_09 AC 37 ms
52,068 KB
testcase_10 AC 38 ms
52,332 KB
testcase_11 AC 48 ms
67,952 KB
testcase_12 AC 49 ms
69,716 KB
testcase_13 AC 59 ms
70,396 KB
testcase_14 AC 50 ms
70,688 KB
testcase_15 AC 48 ms
69,652 KB
testcase_16 AC 49 ms
69,348 KB
testcase_17 AC 50 ms
70,868 KB
testcase_18 AC 48 ms
70,388 KB
testcase_19 AC 49 ms
70,504 KB
testcase_20 AC 49 ms
70,988 KB
testcase_21 AC 49 ms
66,712 KB
testcase_22 AC 46 ms
64,932 KB
testcase_23 AC 46 ms
63,084 KB
testcase_24 AC 45 ms
63,476 KB
testcase_25 AC 44 ms
64,072 KB
testcase_26 AC 38 ms
54,996 KB
testcase_27 AC 39 ms
55,192 KB
testcase_28 AC 40 ms
55,676 KB
testcase_29 AC 38 ms
54,060 KB
testcase_30 AC 39 ms
55,228 KB
testcase_31 AC 46 ms
64,740 KB
testcase_32 AC 42 ms
59,412 KB
testcase_33 AC 44 ms
63,640 KB
testcase_34 AC 43 ms
63,072 KB
testcase_35 AC 47 ms
69,832 KB
testcase_36 AC 44 ms
63,920 KB
testcase_37 AC 47 ms
68,956 KB
testcase_38 AC 39 ms
55,060 KB
testcase_39 AC 45 ms
65,972 KB
testcase_40 AC 46 ms
68,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = N+1
for j in range(2,60+1):
    high = N
    low = 1
    while high-low>1:
        mid = (high+low)//2
        if pow(mid,j)<=N:
            low = mid
        else:
            high = mid
    ans = min(ans,low+j+N-pow(low,j))
print(ans)
0