結果

問題 No.1742 Binary Indexed Train
ユーザー dn6049949dn6049949
提出日時 2021-11-14 22:37:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 3,000 ms
コード長 865 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,072 KB
最終ジャッジ日時 2024-11-30 08:23:48
合計ジャッジ時間 9,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 45 ms
54,528 KB
testcase_03 AC 214 ms
77,824 KB
testcase_04 AC 211 ms
77,696 KB
testcase_05 AC 209 ms
77,824 KB
testcase_06 AC 157 ms
79,072 KB
testcase_07 AC 157 ms
78,464 KB
testcase_08 AC 268 ms
78,208 KB
testcase_09 AC 259 ms
78,720 KB
testcase_10 AC 265 ms
78,108 KB
testcase_11 AC 269 ms
78,324 KB
testcase_12 AC 256 ms
78,080 KB
testcase_13 AC 158 ms
77,312 KB
testcase_14 AC 176 ms
77,936 KB
testcase_15 AC 132 ms
77,184 KB
testcase_16 AC 126 ms
76,928 KB
testcase_17 AC 186 ms
78,476 KB
testcase_18 AC 180 ms
77,824 KB
testcase_19 AC 148 ms
77,952 KB
testcase_20 AC 112 ms
76,800 KB
testcase_21 AC 149 ms
77,312 KB
testcase_22 AC 190 ms
77,952 KB
testcase_23 AC 112 ms
76,972 KB
testcase_24 AC 94 ms
76,672 KB
testcase_25 AC 185 ms
77,776 KB
testcase_26 AC 151 ms
77,568 KB
testcase_27 AC 174 ms
77,472 KB
testcase_28 AC 124 ms
77,652 KB
testcase_29 AC 193 ms
77,908 KB
testcase_30 AC 139 ms
77,056 KB
testcase_31 AC 195 ms
77,696 KB
testcase_32 AC 147 ms
77,312 KB
testcase_33 AC 128 ms
77,184 KB
testcase_34 AC 176 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!usr/bin/env python3
from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def IR(n):
    return [I() for _ in range(n)]
def LIR(n):
    return [LI() for _ in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007

def main():
    def f(l,r):
        l += 2**n
        r += 2**n
        res = 0
        while l < r:
            if l & 1:
                res +=1
                l += 1

            if r & 1:
                r -= 1
                res += 1
            l >>= 1
            r >>= 1
        return res
    n,q = LI()
    for _ in range(q):
        l,r = LI()
        print(f(l,r))
    return


if __name__ == "__main__":
    main()
0