結果

問題 No.1869 Doubling?
ユーザー ikomaikoma
提出日時 2022-03-11 22:30:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 309,292 KB
最終ジャッジ日時 2024-09-16 02:53:02
合計ジャッジ時間 6,951 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
51,456 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
51,456 KB
testcase_10 WA -
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 40 ms
51,456 KB
testcase_13 AC 41 ms
51,456 KB
testcase_14 AC 42 ms
51,456 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 WA -
testcase_34 AC 41 ms
51,712 KB
testcase_35 WA -
testcase_36 AC 40 ms
51,584 KB
testcase_37 AC 40 ms
51,456 KB
testcase_38 AC 40 ms
51,968 KB
testcase_39 AC 39 ms
51,584 KB
testcase_40 AC 40 ms
51,584 KB
testcase_41 AC 42 ms
51,456 KB
testcase_42 RE -
testcase_43 AC 41 ms
51,712 KB
testcase_44 AC 41 ms
51,584 KB
testcase_45 AC 40 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
ans = 0
N2=N
while M>1 & N>0:
    ans += M
    M = (M+1)>>1
    N-=1
ans += N
if M!=1:
    ans = (1<<N2)-1
print(ans)
0