結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
59,008 KB
testcase_01 AC 86 ms
75,728 KB
testcase_02 AC 72 ms
75,776 KB
testcase_03 AC 51 ms
59,136 KB
testcase_04 AC 52 ms
59,008 KB
testcase_05 AC 51 ms
58,880 KB
testcase_06 AC 51 ms
59,520 KB
testcase_07 AC 56 ms
59,136 KB
testcase_08 AC 52 ms
58,880 KB
testcase_09 AC 51 ms
59,136 KB
testcase_10 AC 50 ms
59,136 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 82 ms
75,512 KB
testcase_22 AC 84 ms
75,528 KB
testcase_23 AC 82 ms
75,736 KB
testcase_24 AC 82 ms
75,516 KB
testcase_25 AC 83 ms
75,544 KB
testcase_26 AC 67 ms
75,636 KB
testcase_27 AC 63 ms
75,392 KB
testcase_28 AC 65 ms
75,776 KB
testcase_29 AC 68 ms
75,612 KB
testcase_30 AC 67 ms
75,492 KB
testcase_31 AC 84 ms
75,512 KB
testcase_32 AC 107 ms
75,416 KB
testcase_33 AC 82 ms
75,636 KB
testcase_34 AC 83 ms
75,668 KB
testcase_35 AC 627 ms
75,520 KB
testcase_36 AC 82 ms
75,344 KB
testcase_37 AC 179 ms
75,628 KB
testcase_38 AC 68 ms
75,608 KB
testcase_39 AC 96 ms
75,488 KB
testcase_40 AC 114 ms
75,660 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