結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-11-09 23:00:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 434 ms / 3,000 ms
コード長 357 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-11-25 11:24:12
合計ジャッジ時間 11,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,204 KB
testcase_01 AC 39 ms
52,200 KB
testcase_02 AC 39 ms
51,876 KB
testcase_03 AC 365 ms
77,148 KB
testcase_04 AC 372 ms
77,128 KB
testcase_05 AC 373 ms
77,028 KB
testcase_06 AC 313 ms
76,844 KB
testcase_07 AC 312 ms
76,544 KB
testcase_08 AC 434 ms
77,560 KB
testcase_09 AC 425 ms
77,312 KB
testcase_10 AC 422 ms
77,356 KB
testcase_11 AC 432 ms
77,184 KB
testcase_12 AC 429 ms
77,056 KB
testcase_13 AC 315 ms
76,160 KB
testcase_14 AC 333 ms
76,100 KB
testcase_15 AC 183 ms
77,416 KB
testcase_16 AC 154 ms
77,328 KB
testcase_17 AC 337 ms
77,084 KB
testcase_18 AC 320 ms
77,100 KB
testcase_19 AC 234 ms
77,112 KB
testcase_20 AC 121 ms
76,844 KB
testcase_21 AC 192 ms
77,124 KB
testcase_22 AC 338 ms
76,916 KB
testcase_23 AC 126 ms
77,220 KB
testcase_24 AC 103 ms
76,928 KB
testcase_25 AC 274 ms
77,824 KB
testcase_26 AC 249 ms
76,928 KB
testcase_27 AC 252 ms
77,556 KB
testcase_28 AC 130 ms
76,880 KB
testcase_29 AC 323 ms
76,976 KB
testcase_30 AC 202 ms
77,056 KB
testcase_31 AC 350 ms
77,112 KB
testcase_32 AC 192 ms
77,184 KB
testcase_33 AC 142 ms
77,056 KB
testcase_34 AC 261 ms
77,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(s, t, n):
    s += 2 ** n
    t += 2 ** n
    ans = 0
    while s < t:
        if s & 1:
            ans += 1
            s += 1
        if t & 1:
            t -= 1
            ans += 1
        s >>= 1
        t >>= 1

    return ans

n, q=map(int,input().split())

for _ in range(q):
    s, t = map(int,input().split())
    print(solve(s, t, n))
0