結果

問題 No.1664 Unstable f(n)
ユーザー asumo0729asumo0729
提出日時 2021-09-05 16:38:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 54,920 KB
最終ジャッジ日時 2024-06-01 11:45:58
合計ジャッジ時間 2,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,068 KB
testcase_01 AC 39 ms
53,724 KB
testcase_02 AC 39 ms
53,520 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
53,436 KB
testcase_11 AC 39 ms
54,108 KB
testcase_12 AC 39 ms
53,588 KB
testcase_13 AC 39 ms
53,324 KB
testcase_14 AC 38 ms
53,216 KB
testcase_15 AC 38 ms
54,448 KB
testcase_16 AC 39 ms
53,476 KB
testcase_17 AC 39 ms
53,460 KB
testcase_18 AC 40 ms
54,452 KB
testcase_19 AC 40 ms
53,252 KB
testcase_20 AC 39 ms
53,204 KB
testcase_21 AC 40 ms
54,628 KB
testcase_22 AC 39 ms
53,736 KB
testcase_23 AC 39 ms
53,764 KB
testcase_24 AC 40 ms
54,532 KB
testcase_25 AC 39 ms
54,460 KB
testcase_26 AC 39 ms
53,804 KB
testcase_27 AC 39 ms
53,916 KB
testcase_28 AC 39 ms
53,456 KB
testcase_29 AC 40 ms
53,472 KB
testcase_30 AC 39 ms
53,088 KB
testcase_31 AC 39 ms
54,424 KB
testcase_32 AC 39 ms
54,324 KB
testcase_33 AC 38 ms
53,376 KB
testcase_34 AC 39 ms
54,140 KB
testcase_35 AC 40 ms
53,272 KB
testcase_36 AC 38 ms
53,092 KB
testcase_37 AC 39 ms
53,136 KB
testcase_38 AC 39 ms
53,308 KB
testcase_39 AC 39 ms
54,544 KB
testcase_40 AC 40 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
import math
stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
eps = 1e-9
sortkey = itemgetter(0)

n = ip()
ans = n - 1

for j in range(1,int(math.log2(n)) + 1):
    i = int(pow(n, (1.0 / j)))
    while pow(i,j) <= n:
        i += 1
    i -= 1
    k = n - i ** j
    ans = min(ans, i + j + k)

print(ans)
0