結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 375 ms
77,568 KB
testcase_04 AC 398 ms
77,568 KB
testcase_05 AC 388 ms
77,184 KB
testcase_06 AC 341 ms
76,672 KB
testcase_07 AC 300 ms
76,672 KB
testcase_08 AC 427 ms
77,440 KB
testcase_09 AC 405 ms
77,312 KB
testcase_10 AC 436 ms
76,928 KB
testcase_11 AC 458 ms
77,440 KB
testcase_12 AC 412 ms
77,312 KB
testcase_13 AC 312 ms
76,160 KB
testcase_14 AC 341 ms
76,288 KB
testcase_15 AC 193 ms
77,184 KB
testcase_16 AC 172 ms
77,312 KB
testcase_17 AC 349 ms
77,312 KB
testcase_18 AC 304 ms
77,056 KB
testcase_19 AC 228 ms
77,440 KB
testcase_20 AC 120 ms
77,184 KB
testcase_21 AC 195 ms
77,312 KB
testcase_22 AC 337 ms
77,440 KB
testcase_23 AC 140 ms
77,184 KB
testcase_24 AC 103 ms
76,800 KB
testcase_25 AC 288 ms
77,696 KB
testcase_26 AC 239 ms
77,184 KB
testcase_27 AC 247 ms
77,568 KB
testcase_28 AC 130 ms
76,928 KB
testcase_29 AC 309 ms
77,568 KB
testcase_30 AC 190 ms
77,824 KB
testcase_31 AC 355 ms
77,184 KB
testcase_32 AC 203 ms
77,056 KB
testcase_33 AC 159 ms
77,568 KB
testcase_34 AC 259 ms
77,184 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