結果

問題 No.1664 Unstable f(n)
ユーザー asumo0729asumo0729
提出日時 2021-09-05 16:39:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-01 11:46:02
合計ジャッジ時間 2,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,408 KB
testcase_01 AC 41 ms
53,648 KB
testcase_02 AC 41 ms
53,468 KB
testcase_03 AC 40 ms
53,060 KB
testcase_04 AC 38 ms
53,868 KB
testcase_05 AC 40 ms
53,804 KB
testcase_06 AC 39 ms
53,936 KB
testcase_07 AC 40 ms
53,888 KB
testcase_08 AC 38 ms
53,364 KB
testcase_09 AC 38 ms
54,004 KB
testcase_10 AC 40 ms
53,240 KB
testcase_11 AC 39 ms
53,380 KB
testcase_12 AC 40 ms
53,432 KB
testcase_13 AC 40 ms
54,384 KB
testcase_14 AC 41 ms
53,524 KB
testcase_15 AC 39 ms
53,388 KB
testcase_16 AC 39 ms
54,004 KB
testcase_17 AC 39 ms
53,880 KB
testcase_18 AC 38 ms
53,592 KB
testcase_19 AC 39 ms
53,704 KB
testcase_20 AC 38 ms
53,208 KB
testcase_21 AC 38 ms
53,872 KB
testcase_22 AC 38 ms
53,800 KB
testcase_23 AC 39 ms
54,268 KB
testcase_24 AC 39 ms
53,340 KB
testcase_25 AC 40 ms
53,824 KB
testcase_26 AC 40 ms
53,032 KB
testcase_27 AC 40 ms
54,200 KB
testcase_28 AC 39 ms
54,120 KB
testcase_29 AC 39 ms
53,588 KB
testcase_30 AC 40 ms
53,920 KB
testcase_31 AC 38 ms
53,720 KB
testcase_32 AC 39 ms
54,348 KB
testcase_33 AC 39 ms
53,208 KB
testcase_34 AC 39 ms
53,376 KB
testcase_35 AC 40 ms
52,848 KB
testcase_36 AC 40 ms
52,728 KB
testcase_37 AC 39 ms
54,408 KB
testcase_38 AC 40 ms
53,176 KB
testcase_39 AC 39 ms
53,844 KB
testcase_40 AC 40 ms
53,652 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

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