結果

問題 No.1664 Unstable f(n)
ユーザー nok0nok0
提出日時 2021-09-03 21:23:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,448 KB
最終ジャッジ日時 2024-12-15 09:39:44
合計ジャッジ時間 9,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,284 KB
testcase_01 AC 76 ms
75,804 KB
testcase_02 AC 68 ms
75,500 KB
testcase_03 AC 46 ms
58,788 KB
testcase_04 AC 46 ms
59,936 KB
testcase_05 AC 52 ms
60,556 KB
testcase_06 AC 49 ms
59,288 KB
testcase_07 AC 46 ms
60,072 KB
testcase_08 AC 49 ms
61,108 KB
testcase_09 AC 45 ms
60,180 KB
testcase_10 AC 45 ms
59,420 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 74 ms
75,548 KB
testcase_22 AC 76 ms
75,720 KB
testcase_23 AC 75 ms
75,892 KB
testcase_24 AC 80 ms
75,452 KB
testcase_25 AC 78 ms
75,832 KB
testcase_26 AC 63 ms
75,672 KB
testcase_27 AC 63 ms
75,704 KB
testcase_28 AC 63 ms
75,368 KB
testcase_29 AC 63 ms
75,340 KB
testcase_30 AC 62 ms
75,552 KB
testcase_31 AC 75 ms
75,488 KB
testcase_32 AC 96 ms
75,556 KB
testcase_33 AC 73 ms
75,292 KB
testcase_34 AC 74 ms
75,764 KB
testcase_35 AC 573 ms
75,452 KB
testcase_36 AC 77 ms
75,716 KB
testcase_37 AC 161 ms
75,792 KB
testcase_38 AC 67 ms
75,560 KB
testcase_39 AC 88 ms
75,428 KB
testcase_40 AC 101 ms
76,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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