結果

問題 No.1664 Unstable f(n)
ユーザー O2MTO2MT
提出日時 2021-09-07 23:24:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 150 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 60,800 KB
最終ジャッジ日時 2024-06-06 11:58:05
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
57,984 KB
testcase_01 AC 70 ms
59,776 KB
testcase_02 AC 56 ms
59,776 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 45 ms
57,728 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 63 ms
59,776 KB
testcase_22 AC 61 ms
59,648 KB
testcase_23 AC 61 ms
60,032 KB
testcase_24 AC 61 ms
59,776 KB
testcase_25 AC 62 ms
59,776 KB
testcase_26 AC 49 ms
59,008 KB
testcase_27 AC 49 ms
59,136 KB
testcase_28 AC 53 ms
59,392 KB
testcase_29 AC 49 ms
59,520 KB
testcase_30 AC 49 ms
59,392 KB
testcase_31 AC 58 ms
60,032 KB
testcase_32 AC 81 ms
60,160 KB
testcase_33 AC 64 ms
59,648 KB
testcase_34 AC 60 ms
60,032 KB
testcase_35 AC 92 ms
59,776 KB
testcase_36 AC 60 ms
59,776 KB
testcase_37 AC 83 ms
60,032 KB
testcase_38 AC 48 ms
59,392 KB
testcase_39 AC 76 ms
60,032 KB
testcase_40 AC 82 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = N
for j in range(64):
  for i in range(10**6):
    if i**j > N:
      break
    k = N-i**j
    ans = min(ans,i+j+k)

print(ans)
0