結果

問題 No.1869 Doubling?
ユーザー rlangevinrlangevin
提出日時 2022-12-30 04:40:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 302,692 KB
最終ジャッジ日時 2024-11-25 02:36:51
合計ジャッジ時間 4,472 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,028 KB
testcase_01 AC 34 ms
53,580 KB
testcase_02 AC 34 ms
52,840 KB
testcase_03 AC 61 ms
124,924 KB
testcase_04 AC 159 ms
241,468 KB
testcase_05 AC 118 ms
248,808 KB
testcase_06 AC 35 ms
52,652 KB
testcase_07 AC 34 ms
53,596 KB
testcase_08 AC 34 ms
52,072 KB
testcase_09 AC 33 ms
52,276 KB
testcase_10 AC 34 ms
52,320 KB
testcase_11 AC 32 ms
53,224 KB
testcase_12 AC 34 ms
52,468 KB
testcase_13 AC 34 ms
52,804 KB
testcase_14 AC 34 ms
52,948 KB
testcase_15 AC 33 ms
53,100 KB
testcase_16 AC 34 ms
52,084 KB
testcase_17 AC 33 ms
52,776 KB
testcase_18 AC 33 ms
52,184 KB
testcase_19 AC 35 ms
51,944 KB
testcase_20 AC 34 ms
51,752 KB
testcase_21 AC 34 ms
52,028 KB
testcase_22 AC 34 ms
53,360 KB
testcase_23 AC 34 ms
51,632 KB
testcase_24 AC 158 ms
301,872 KB
testcase_25 AC 151 ms
301,492 KB
testcase_26 AC 152 ms
301,520 KB
testcase_27 AC 149 ms
302,692 KB
testcase_28 AC 149 ms
301,540 KB
testcase_29 AC 145 ms
301,580 KB
testcase_30 AC 146 ms
302,684 KB
testcase_31 AC 150 ms
301,068 KB
testcase_32 AC 144 ms
302,352 KB
testcase_33 AC 33 ms
52,172 KB
testcase_34 AC 34 ms
52,124 KB
testcase_35 AC 33 ms
53,016 KB
testcase_36 AC 32 ms
52,880 KB
testcase_37 AC 33 ms
52,556 KB
testcase_38 AC 33 ms
52,204 KB
testcase_39 AC 34 ms
52,888 KB
testcase_40 AC 34 ms
52,308 KB
testcase_41 AC 33 ms
52,136 KB
testcase_42 AC 145 ms
301,280 KB
testcase_43 AC 143 ms
302,300 KB
testcase_44 AC 34 ms
53,364 KB
testcase_45 AC 34 ms
52,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n, m):
    if n == 1:
        return m
    if n % 2 == 0:
        return n + f(n//2, m - 1)
    else:
        return n + f((n + 1)//2, m - 1)
    

N, M = map(int, input().split())
ans = 2 ** N - 1
print(min(ans, f(M, N)))
0