結果

問題 No.1869 Doubling?
ユーザー octet9445octet9445
提出日時 2022-03-15 17:46:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 60,000 KB
最終ジャッジ日時 2024-09-22 09:28:02
合計ジャッジ時間 37,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,824 KB
testcase_01 AC 40 ms
58,804 KB
testcase_02 AC 37 ms
52,616 KB
testcase_03 AC 808 ms
57,976 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 38 ms
52,636 KB
testcase_07 AC 37 ms
51,964 KB
testcase_08 AC 37 ms
52,404 KB
testcase_09 WA -
testcase_10 AC 38 ms
52,492 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 40 ms
58,472 KB
testcase_16 AC 41 ms
58,224 KB
testcase_17 AC 40 ms
58,992 KB
testcase_18 AC 40 ms
59,168 KB
testcase_19 AC 40 ms
58,372 KB
testcase_20 AC 40 ms
57,904 KB
testcase_21 AC 39 ms
57,760 KB
testcase_22 AC 40 ms
58,184 KB
testcase_23 AC 41 ms
58,904 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 37 ms
53,288 KB
testcase_34 AC 38 ms
52,012 KB
testcase_35 AC 37 ms
52,108 KB
testcase_36 AC 37 ms
52,192 KB
testcase_37 AC 38 ms
52,832 KB
testcase_38 AC 36 ms
53,360 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 WA -
testcase_45 AC 38 ms
52,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = M
curr = M
for i in range(N-1, 0, -1):
    if curr % 2 == 1:
        curr += 1
        curr //= 2
    else:
        curr //= 2
    ans += curr
    
print (ans)
0