結果

問題 No.1664 Unstable f(n)
ユーザー nok0nok0
提出日時 2021-09-03 21:28:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 248 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,320 KB
最終ジャッジ日時 2024-05-09 01:50:37
合計ジャッジ時間 44,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 OLE -
testcase_12 OLE -
testcase_13 OLE -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 OLE -
testcase_20 OLE -
testcase_21 WA -
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 WA -
testcase_32 OLE -
testcase_33 WA -
testcase_34 WA -
testcase_35 OLE -
testcase_36 WA -
testcase_37 OLE -
testcase_38 WA -
testcase_39 OLE -
testcase_40 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(res)
0