結果

問題 No.1664 Unstable f(n)
ユーザー nok0nok0
提出日時 2021-09-03 21:25:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 76,200 KB
最終ジャッジ日時 2024-12-15 09:42:36
合計ジャッジ時間 12,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 74 ms
59,564 KB
testcase_04 AC 74 ms
60,616 KB
testcase_05 AC 74 ms
59,992 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 72 ms
60,308 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 138 ms
75,772 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 133 ms
75,628 KB
testcase_32 AC 167 ms
75,656 KB
testcase_33 AC 136 ms
75,492 KB
testcase_34 AC 132 ms
75,872 KB
testcase_35 AC 704 ms
75,896 KB
testcase_36 AC 140 ms
75,828 KB
testcase_37 AC 241 ms
75,892 KB
testcase_38 AC 101 ms
75,780 KB
testcase_39 AC 146 ms
75,644 KB
testcase_40 AC 174 ms
75,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
res = n
for i in range(1, 2000000):
    for j in range(0, 100):
        if i ** j > n:
            break
        res = min(res, i + j + n - i ** j)
k = int(n ** 0.5)
res = min(res, k + n - k**2)

print(res)
0