結果

問題 No.1664 Unstable f(n)
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-03 21:54:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 223 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-12-15 12:50:08
合計ジャッジ時間 45,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,440 KB
testcase_01 AC 164 ms
17,704 KB
testcase_02 AC 28 ms
17,572 KB
testcase_03 AC 26 ms
17,576 KB
testcase_04 AC 26 ms
17,572 KB
testcase_05 AC 25 ms
17,444 KB
testcase_06 AC 27 ms
17,568 KB
testcase_07 AC 27 ms
21,248 KB
testcase_08 AC 26 ms
17,444 KB
testcase_09 AC 25 ms
21,376 KB
testcase_10 AC 27 ms
17,572 KB
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 59 ms
17,444 KB
testcase_22 AC 59 ms
17,568 KB
testcase_23 AC 51 ms
17,568 KB
testcase_24 AC 36 ms
17,568 KB
testcase_25 AC 60 ms
10,624 KB
testcase_26 AC 27 ms
10,624 KB
testcase_27 AC 26 ms
10,624 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 25 ms
10,496 KB
testcase_30 AC 26 ms
10,624 KB
testcase_31 AC 32 ms
10,496 KB
testcase_32 TLE -
testcase_33 AC 80 ms
10,624 KB
testcase_34 AC 29 ms
10,624 KB
testcase_35 TLE -
testcase_36 AC 73 ms
10,752 KB
testcase_37 TLE -
testcase_38 AC 27 ms
10,624 KB
testcase_39 AC 888 ms
10,496 KB
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = 1 + 0 + (n - 1)

j = 10 ** 18
i = 2
while j != 1 and i <= n:
    j = 1
    x = i
    while x * i <= n:
        x *= i
        j += 1
    k = n - x
    ans = min(ans, i + j + k)
    i += 1

print(ans)
0