結果

問題 No.1664 Unstable f(n)
ユーザー 👑 rin204rin204
提出日時 2021-09-03 21:28:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 250 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 151,568 KB
最終ジャッジ日時 2024-12-15 10:04:56
合計ジャッジ時間 31,046 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,736 KB
testcase_01 AC 41 ms
141,364 KB
testcase_02 AC 39 ms
67,644 KB
testcase_03 AC 32 ms
59,480 KB
testcase_04 AC 32 ms
59,812 KB
testcase_05 AC 32 ms
128,600 KB
testcase_06 AC 33 ms
59,572 KB
testcase_07 AC 32 ms
128,596 KB
testcase_08 AC 33 ms
59,280 KB
testcase_09 AC 33 ms
128,452 KB
testcase_10 AC 33 ms
59,132 KB
testcase_11 AC 1,510 ms
151,568 KB
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 39 ms
61,172 KB
testcase_22 AC 41 ms
61,796 KB
testcase_23 AC 39 ms
62,020 KB
testcase_24 AC 41 ms
62,488 KB
testcase_25 AC 45 ms
62,612 KB
testcase_26 AC 34 ms
53,128 KB
testcase_27 AC 33 ms
52,880 KB
testcase_28 AC 38 ms
59,864 KB
testcase_29 AC 34 ms
52,328 KB
testcase_30 AC 38 ms
58,832 KB
testcase_31 AC 32 ms
52,092 KB
testcase_32 AC 34 ms
53,416 KB
testcase_33 AC 35 ms
52,260 KB
testcase_34 AC 38 ms
52,556 KB
testcase_35 AC 32 ms
53,144 KB
testcase_36 AC 34 ms
52,596 KB
testcase_37 AC 33 ms
53,292 KB
testcase_38 AC 32 ms
52,720 KB
testcase_39 AC 32 ms
52,656 KB
testcase_40 AC 33 ms
128,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = n
for i in range(2, n):
    if i >= ans:
        break
    tmp = 1
    for j in range(n):
        if i + j >= ans or tmp > n:
            break
        k = n - tmp
        ans = min(ans, i + j + k)
        tmp *= i

print(ans)
0