結果

問題 No.1664 Unstable f(n)
ユーザー asumo0729asumo0729
提出日時 2021-09-05 16:38:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 53,352 KB
最終ジャッジ日時 2024-12-21 18:09:14
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,428 KB
testcase_01 AC 37 ms
53,008 KB
testcase_02 AC 34 ms
52,784 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 36 ms
53,212 KB
testcase_11 AC 37 ms
52,840 KB
testcase_12 AC 38 ms
53,008 KB
testcase_13 AC 35 ms
52,780 KB
testcase_14 AC 36 ms
53,352 KB
testcase_15 AC 36 ms
52,944 KB
testcase_16 AC 35 ms
52,956 KB
testcase_17 AC 36 ms
53,208 KB
testcase_18 AC 36 ms
53,328 KB
testcase_19 AC 37 ms
52,888 KB
testcase_20 AC 35 ms
52,532 KB
testcase_21 AC 35 ms
52,656 KB
testcase_22 AC 35 ms
52,400 KB
testcase_23 AC 35 ms
53,132 KB
testcase_24 AC 35 ms
53,032 KB
testcase_25 AC 34 ms
53,080 KB
testcase_26 AC 35 ms
52,836 KB
testcase_27 AC 35 ms
52,620 KB
testcase_28 AC 33 ms
52,860 KB
testcase_29 AC 34 ms
53,088 KB
testcase_30 AC 35 ms
52,936 KB
testcase_31 AC 34 ms
52,484 KB
testcase_32 AC 34 ms
53,088 KB
testcase_33 AC 35 ms
53,260 KB
testcase_34 AC 35 ms
52,912 KB
testcase_35 AC 36 ms
52,904 KB
testcase_36 AC 34 ms
53,000 KB
testcase_37 AC 37 ms
52,724 KB
testcase_38 AC 36 ms
53,208 KB
testcase_39 AC 35 ms
53,088 KB
testcase_40 AC 33 ms
53,080 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