結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 75 ms
59,776 KB
testcase_04 AC 76 ms
59,392 KB
testcase_05 AC 75 ms
60,032 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 71 ms
59,520 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 143 ms
75,648 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 139 ms
75,648 KB
testcase_32 AC 175 ms
75,648 KB
testcase_33 AC 140 ms
75,648 KB
testcase_34 AC 138 ms
75,776 KB
testcase_35 AC 675 ms
75,776 KB
testcase_36 AC 145 ms
76,032 KB
testcase_37 AC 243 ms
75,904 KB
testcase_38 AC 108 ms
75,648 KB
testcase_39 AC 153 ms
75,776 KB
testcase_40 AC 178 ms
75,904 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