結果

問題 No.1664 Unstable f(n)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-09-03 21:25:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,856 KB
最終ジャッジ日時 2024-05-09 01:24:40
合計ジャッジ時間 5,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,068 KB
testcase_01 AC 75 ms
58,804 KB
testcase_02 AC 56 ms
58,612 KB
testcase_03 AC 38 ms
52,444 KB
testcase_04 AC 38 ms
52,452 KB
testcase_05 AC 38 ms
51,940 KB
testcase_06 AC 38 ms
52,380 KB
testcase_07 AC 38 ms
52,908 KB
testcase_08 AC 38 ms
53,172 KB
testcase_09 AC 38 ms
52,292 KB
testcase_10 AC 37 ms
52,628 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 69 ms
60,228 KB
testcase_22 AC 72 ms
58,932 KB
testcase_23 AC 69 ms
57,984 KB
testcase_24 AC 67 ms
60,132 KB
testcase_25 AC 71 ms
58,388 KB
testcase_26 AC 43 ms
58,844 KB
testcase_27 AC 43 ms
58,188 KB
testcase_28 AC 46 ms
58,608 KB
testcase_29 AC 43 ms
59,744 KB
testcase_30 AC 44 ms
60,152 KB
testcase_31 AC 67 ms
60,608 KB
testcase_32 AC 74 ms
59,904 KB
testcase_33 AC 71 ms
58,364 KB
testcase_34 AC 71 ms
58,276 KB
testcase_35 AC 160 ms
75,208 KB
testcase_36 AC 75 ms
57,856 KB
testcase_37 AC 143 ms
75,512 KB
testcase_38 AC 43 ms
58,896 KB
testcase_39 AC 73 ms
58,740 KB
testcase_40 AC 135 ms
75,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = n

for i in range(2,min(n+1,10**6+5)):
    x = 0
    num = 1
    while num <= n:
        num *= i
        x += 1
    num //= i
    x -= 1
    ans = min(ans,i+x+n-num)
print(ans)
0