結果

問題 No.1664 Unstable f(n)
ユーザー ngng628ngng628
提出日時 2021-11-22 04:00:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-06-23 12:52:16
合計ジャッジ時間 10,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
58,624 KB
testcase_01 AC 74 ms
59,008 KB
testcase_02 AC 67 ms
59,264 KB
testcase_03 AC 41 ms
57,984 KB
testcase_04 AC 49 ms
58,240 KB
testcase_05 AC 50 ms
58,240 KB
testcase_06 AC 52 ms
57,984 KB
testcase_07 AC 55 ms
58,368 KB
testcase_08 AC 50 ms
57,984 KB
testcase_09 AC 51 ms
57,984 KB
testcase_10 AC 52 ms
57,984 KB
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 71 ms
58,496 KB
testcase_22 AC 74 ms
59,648 KB
testcase_23 AC 73 ms
58,752 KB
testcase_24 AC 65 ms
58,752 KB
testcase_25 AC 73 ms
58,752 KB
testcase_26 AC 59 ms
59,520 KB
testcase_27 AC 58 ms
59,520 KB
testcase_28 AC 62 ms
59,904 KB
testcase_29 AC 58 ms
59,520 KB
testcase_30 AC 59 ms
59,520 KB
testcase_31 AC 64 ms
58,368 KB
testcase_32 AC 83 ms
58,496 KB
testcase_33 AC 68 ms
58,368 KB
testcase_34 AC 72 ms
58,624 KB
testcase_35 AC 610 ms
75,008 KB
testcase_36 AC 71 ms
58,368 KB
testcase_37 AC 160 ms
75,176 KB
testcase_38 AC 58 ms
59,392 KB
testcase_39 AC 80 ms
59,136 KB
testcase_40 AC 94 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = n  # i == 1
for i in range(2, 10**6):
   j = 0
   while i**(j + 1) <= n:
      j += 1
   k = n - i**j
   ans = min(ans, i + j + k)

print(ans)
0