結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,836 KB
testcase_01 AC 52 ms
59,864 KB
testcase_02 AC 51 ms
59,576 KB
testcase_03 AC 38 ms
59,016 KB
testcase_04 AC 42 ms
59,112 KB
testcase_05 AC 40 ms
59,180 KB
testcase_06 AC 41 ms
58,216 KB
testcase_07 AC 42 ms
58,900 KB
testcase_08 AC 41 ms
58,520 KB
testcase_09 AC 40 ms
58,620 KB
testcase_10 AC 42 ms
58,096 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 50 ms
59,560 KB
testcase_22 AC 51 ms
59,588 KB
testcase_23 AC 54 ms
59,572 KB
testcase_24 AC 45 ms
59,540 KB
testcase_25 AC 50 ms
59,112 KB
testcase_26 AC 48 ms
58,908 KB
testcase_27 AC 48 ms
59,352 KB
testcase_28 AC 46 ms
59,536 KB
testcase_29 AC 45 ms
59,300 KB
testcase_30 AC 44 ms
59,724 KB
testcase_31 AC 45 ms
60,032 KB
testcase_32 AC 52 ms
59,384 KB
testcase_33 AC 49 ms
59,456 KB
testcase_34 AC 49 ms
59,636 KB
testcase_35 AC 69 ms
75,560 KB
testcase_36 AC 48 ms
59,304 KB
testcase_37 AC 55 ms
66,392 KB
testcase_38 AC 45 ms
59,160 KB
testcase_39 AC 49 ms
59,236 KB
testcase_40 AC 53 ms
60,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

n = int(stdin.readline())

ans = n
for i in range(2,1000000):

    x = 1
    cnt = 0

    while x * i <= n:
        x *= i
        cnt += 1

    k = n - x
    ans = min(ans , i + cnt + k)

print (ans)
0