結果

問題 No.1664 Unstable f(n)
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-09-03 21:32:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 137,660 KB
最終ジャッジ日時 2024-12-15 10:24:54
合計ジャッジ時間 48,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
66,448 KB
testcase_01 AC 391 ms
67,696 KB
testcase_02 AC 238 ms
66,420 KB
testcase_03 AC 49 ms
133,856 KB
testcase_04 AC 173 ms
66,104 KB
testcase_05 AC 171 ms
135,640 KB
testcase_06 AC 179 ms
66,072 KB
testcase_07 AC 173 ms
135,700 KB
testcase_08 AC 178 ms
67,384 KB
testcase_09 AC 174 ms
134,504 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 393 ms
137,660 KB
testcase_22 AC 381 ms
66,824 KB
testcase_23 AC 371 ms
135,428 KB
testcase_24 AC 369 ms
68,660 KB
testcase_25 AC 374 ms
60,468 KB
testcase_26 AC 177 ms
59,432 KB
testcase_27 AC 178 ms
60,380 KB
testcase_28 AC 231 ms
60,336 KB
testcase_29 AC 177 ms
60,076 KB
testcase_30 AC 230 ms
61,420 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 TLE -
testcase_36 WA -
testcase_37 TLE -
testcase_38 WA -
testcase_39 WA -
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = n
for i in range(2, 10 ** 7):
	j = 0
	while n - pow(i, j) > 0:
		ans = min(ans, i + j + (n - pow(i, j)))
		j += 1
print(ans)
0