結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,488 KB
testcase_01 WA -
testcase_02 AC 43 ms
60,652 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
53,564 KB
testcase_07 AC 40 ms
53,376 KB
testcase_08 AC 40 ms
53,572 KB
testcase_09 AC 38 ms
53,300 KB
testcase_10 AC 38 ms
53,436 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 41 ms
59,768 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 43 ms
61,548 KB
testcase_27 AC 42 ms
60,192 KB
testcase_28 AC 43 ms
61,048 KB
testcase_29 AC 44 ms
60,940 KB
testcase_30 AC 44 ms
60,696 KB
testcase_31 AC 43 ms
60,496 KB
testcase_32 AC 44 ms
60,256 KB
testcase_33 AC 42 ms
59,976 KB
testcase_34 AC 43 ms
60,992 KB
testcase_35 AC 46 ms
63,208 KB
testcase_36 AC 42 ms
59,948 KB
testcase_37 AC 44 ms
61,360 KB
testcase_38 AC 43 ms
60,868 KB
testcase_39 AC 44 ms
59,752 KB
testcase_40 AC 46 ms
61,444 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