結果

問題 No.1664 Unstable f(n)
ユーザー ShirotsumeShirotsume
提出日時 2021-09-03 21:40:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-12-15 11:15:31
合計ジャッジ時間 41,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 55 ms
17,576 KB
testcase_02 AC 31 ms
16,000 KB
testcase_03 AC 31 ms
21,504 KB
testcase_04 AC 31 ms
16,128 KB
testcase_05 AC 31 ms
21,504 KB
testcase_06 AC 31 ms
16,000 KB
testcase_07 AC 31 ms
21,632 KB
testcase_08 AC 32 ms
17,568 KB
testcase_09 AC 32 ms
21,504 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 36 ms
21,376 KB
testcase_22 AC 37 ms
17,572 KB
testcase_23 AC 35 ms
10,880 KB
testcase_24 AC 33 ms
10,752 KB
testcase_25 AC 37 ms
10,752 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 TLE -
testcase_36 WA -
testcase_37 TLE -
testcase_38 WA -
testcase_39 WA -
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
import math
ans = 10 ** 20
for j in range(0,100):
    if j == 0:
        ans = min(ans, 1 + 0 + n - 1)
    elif j == 1:
        ans = min(ans, n + 1)
    else:
        for i in range(1,n + 1):
            if i ** j >= n:
                break
        i -= 1
        ans = min(ans, i + j + n - i ** j)

print(ans)
0