結果

問題 No.1664 Unstable f(n)
ユーザー nok0nok0
提出日時 2021-09-03 21:22:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 64,484 KB
最終ジャッジ日時 2024-12-15 09:34:51
合計ジャッジ時間 3,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,712 KB
testcase_01 WA -
testcase_02 AC 44 ms
60,612 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
53,520 KB
testcase_07 AC 39 ms
53,556 KB
testcase_08 AC 40 ms
53,088 KB
testcase_09 AC 41 ms
54,116 KB
testcase_10 AC 39 ms
53,752 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 42 ms
60,152 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 45 ms
60,568 KB
testcase_27 AC 43 ms
59,508 KB
testcase_28 AC 43 ms
61,504 KB
testcase_29 AC 45 ms
61,244 KB
testcase_30 AC 45 ms
60,748 KB
testcase_31 AC 43 ms
61,048 KB
testcase_32 AC 45 ms
60,908 KB
testcase_33 AC 43 ms
60,004 KB
testcase_34 AC 42 ms
59,464 KB
testcase_35 AC 47 ms
62,808 KB
testcase_36 AC 43 ms
60,572 KB
testcase_37 AC 45 ms
60,828 KB
testcase_38 AC 46 ms
60,428 KB
testcase_39 AC 43 ms
60,496 KB
testcase_40 AC 45 ms
61,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
res = 1 << 60
for i in range(1, 1000):
    for j in range(1, 1000):
        if i ** j > n:
            break
        res = min(res, i + j + n - i ** j)
print(res)
0