結果

問題 No.1742 Binary Indexed Train
ユーザー mkawa2mkawa2
提出日時 2021-11-12 22:24:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 3,000 ms
コード長 944 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-05-04 09:30:49
合計ジャッジ時間 9,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,060 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 500 ms
76,764 KB
testcase_04 AC 447 ms
76,800 KB
testcase_05 AC 455 ms
76,968 KB
testcase_06 AC 111 ms
77,312 KB
testcase_07 AC 109 ms
77,312 KB
testcase_08 AC 358 ms
76,972 KB
testcase_09 AC 384 ms
76,928 KB
testcase_10 AC 348 ms
77,256 KB
testcase_11 AC 381 ms
76,544 KB
testcase_12 AC 348 ms
77,312 KB
testcase_13 AC 408 ms
76,672 KB
testcase_14 AC 436 ms
76,928 KB
testcase_15 AC 91 ms
76,136 KB
testcase_16 AC 97 ms
76,288 KB
testcase_17 AC 148 ms
76,672 KB
testcase_18 AC 149 ms
76,980 KB
testcase_19 AC 96 ms
76,288 KB
testcase_20 AC 66 ms
72,064 KB
testcase_21 AC 99 ms
76,416 KB
testcase_22 AC 173 ms
76,928 KB
testcase_23 AC 65 ms
70,784 KB
testcase_24 AC 63 ms
69,120 KB
testcase_25 AC 216 ms
76,416 KB
testcase_26 AC 103 ms
76,700 KB
testcase_27 AC 173 ms
76,652 KB
testcase_28 AC 64 ms
76,080 KB
testcase_29 AC 181 ms
76,672 KB
testcase_30 AC 178 ms
76,296 KB
testcase_31 AC 466 ms
76,644 KB
testcase_32 AC 177 ms
76,296 KB
testcase_33 AC 103 ms
76,532 KB
testcase_34 AC 280 ms
76,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 18446744073709551615
inf = 4294967295
# md = 10**9+7
md = 998244353

n, q = LI()
for _ in range(q):
    s, t = LI()
    if s == 0: lv = n
    else: lv = (s & -s).bit_length()-1
    ans = 0
    while s != t:
        while s+(1 << lv) > t: lv -= 1
        s += 1 << lv
        ans += 1
        # print(s,ans,lv)
        lv = (s & -s).bit_length()-1
    print(ans)
0