結果

問題 No.1869 Doubling?
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2022-05-14 22:15:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-07-23 09:09:30
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,672 KB
testcase_01 AC 37 ms
52,488 KB
testcase_02 AC 37 ms
53,084 KB
testcase_03 AC 36 ms
53,320 KB
testcase_04 AC 36 ms
52,884 KB
testcase_05 AC 38 ms
52,488 KB
testcase_06 AC 37 ms
52,456 KB
testcase_07 AC 36 ms
52,304 KB
testcase_08 AC 37 ms
52,204 KB
testcase_09 WA -
testcase_10 AC 37 ms
53,312 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 35 ms
52,828 KB
testcase_16 AC 37 ms
51,956 KB
testcase_17 AC 37 ms
52,572 KB
testcase_18 AC 37 ms
52,456 KB
testcase_19 AC 35 ms
52,020 KB
testcase_20 AC 37 ms
52,676 KB
testcase_21 AC 36 ms
52,724 KB
testcase_22 AC 37 ms
52,768 KB
testcase_23 AC 37 ms
52,412 KB
testcase_24 AC 36 ms
52,828 KB
testcase_25 AC 36 ms
52,112 KB
testcase_26 AC 37 ms
53,024 KB
testcase_27 AC 36 ms
52,376 KB
testcase_28 AC 36 ms
52,732 KB
testcase_29 AC 36 ms
52,752 KB
testcase_30 AC 36 ms
52,336 KB
testcase_31 AC 37 ms
52,472 KB
testcase_32 AC 35 ms
51,936 KB
testcase_33 AC 37 ms
53,004 KB
testcase_34 AC 37 ms
52,460 KB
testcase_35 AC 36 ms
52,744 KB
testcase_36 AC 37 ms
52,276 KB
testcase_37 AC 37 ms
52,588 KB
testcase_38 AC 36 ms
53,100 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 37 ms
53,556 KB
testcase_43 AC 37 ms
52,468 KB
testcase_44 WA -
testcase_45 AC 36 ms
52,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

ans = 0
while M > 1:
    N -= 1
    ans += M
    M = (M+1)//2
    
print(ans + N)
0