結果

問題 No.1869 Doubling?
ユーザー 👑 H20H20
提出日時 2022-03-11 22:37:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 87,160 KB
実行使用メモリ 71,580 KB
最終ジャッジ日時 2023-10-14 07:53:51
合計ジャッジ時間 5,190 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,248 KB
testcase_01 AC 60 ms
71,376 KB
testcase_02 AC 60 ms
71,524 KB
testcase_03 AC 60 ms
71,560 KB
testcase_04 AC 62 ms
71,352 KB
testcase_05 AC 60 ms
71,460 KB
testcase_06 AC 63 ms
71,296 KB
testcase_07 AC 60 ms
71,432 KB
testcase_08 AC 62 ms
71,192 KB
testcase_09 AC 62 ms
71,260 KB
testcase_10 AC 61 ms
71,304 KB
testcase_11 AC 64 ms
71,304 KB
testcase_12 AC 62 ms
71,272 KB
testcase_13 AC 61 ms
71,264 KB
testcase_14 AC 62 ms
71,416 KB
testcase_15 AC 62 ms
71,580 KB
testcase_16 AC 63 ms
71,464 KB
testcase_17 AC 63 ms
71,456 KB
testcase_18 AC 62 ms
71,056 KB
testcase_19 AC 64 ms
71,260 KB
testcase_20 AC 61 ms
71,400 KB
testcase_21 AC 61 ms
71,372 KB
testcase_22 AC 60 ms
71,392 KB
testcase_23 AC 60 ms
71,188 KB
testcase_24 AC 59 ms
71,436 KB
testcase_25 AC 60 ms
71,460 KB
testcase_26 AC 60 ms
71,384 KB
testcase_27 AC 58 ms
71,580 KB
testcase_28 AC 62 ms
71,428 KB
testcase_29 AC 62 ms
71,532 KB
testcase_30 AC 62 ms
71,336 KB
testcase_31 AC 61 ms
71,152 KB
testcase_32 AC 62 ms
71,492 KB
testcase_33 AC 58 ms
71,192 KB
testcase_34 AC 61 ms
71,244 KB
testcase_35 AC 61 ms
71,376 KB
testcase_36 AC 61 ms
71,496 KB
testcase_37 AC 61 ms
71,528 KB
testcase_38 AC 62 ms
71,148 KB
testcase_39 AC 59 ms
71,580 KB
testcase_40 AC 59 ms
71,404 KB
testcase_41 AC 61 ms
71,476 KB
testcase_42 AC 61 ms
71,580 KB
testcase_43 AC 64 ms
71,036 KB
testcase_44 AC 64 ms
71,488 KB
testcase_45 AC 63 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
ans1 = 1
for i in range(N-1):
    if pow(2,i+1)<=M:
        ans1+=pow(2,i+1)
    else:
        break
ans = M
while N>1 and M>=2:
    M = -(-M//2)
    ans += M
    N-=1
if M>=2:
    print(ans1)
else:
    print(ans+N-1)
0