結果

問題 No.1664 Unstable f(n)
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-09-03 21:30:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 75,860 KB
最終ジャッジ日時 2024-05-09 01:53:16
合計ジャッジ時間 26,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
59,008 KB
testcase_01 AC 167 ms
59,008 KB
testcase_02 AC 115 ms
59,136 KB
testcase_03 AC 43 ms
57,472 KB
testcase_04 AC 88 ms
58,880 KB
testcase_05 AC 89 ms
59,136 KB
testcase_06 AC 87 ms
58,880 KB
testcase_07 AC 91 ms
58,880 KB
testcase_08 AC 88 ms
59,136 KB
testcase_09 AC 88 ms
59,264 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 TLE -
testcase_19 TLE -
testcase_20 WA -
testcase_21 AC 159 ms
60,800 KB
testcase_22 AC 158 ms
59,392 KB
testcase_23 AC 157 ms
59,392 KB
testcase_24 AC 158 ms
61,056 KB
testcase_25 AC 171 ms
59,136 KB
testcase_26 AC 90 ms
59,776 KB
testcase_27 AC 92 ms
59,392 KB
testcase_28 AC 109 ms
59,136 KB
testcase_29 AC 90 ms
59,264 KB
testcase_30 AC 108 ms
59,136 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