結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
59,368 KB
testcase_01 AC 148 ms
59,540 KB
testcase_02 AC 103 ms
58,964 KB
testcase_03 AC 41 ms
58,076 KB
testcase_04 AC 79 ms
59,348 KB
testcase_05 AC 79 ms
59,284 KB
testcase_06 AC 78 ms
59,748 KB
testcase_07 AC 80 ms
58,876 KB
testcase_08 AC 79 ms
59,228 KB
testcase_09 AC 81 ms
58,960 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 142 ms
60,864 KB
testcase_22 AC 145 ms
59,708 KB
testcase_23 AC 141 ms
59,352 KB
testcase_24 AC 144 ms
60,912 KB
testcase_25 AC 142 ms
59,604 KB
testcase_26 AC 80 ms
59,784 KB
testcase_27 AC 82 ms
59,592 KB
testcase_28 AC 99 ms
59,360 KB
testcase_29 AC 81 ms
59,476 KB
testcase_30 AC 97 ms
59,472 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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