結果

問題 No.1742 Binary Indexed Train
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-07 18:55:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 3,000 ms
コード長 675 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 78,804 KB
最終ジャッジ日時 2024-09-27 19:29:52
合計ジャッジ時間 14,217 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
56,008 KB
testcase_01 AC 52 ms
56,936 KB
testcase_02 AC 50 ms
56,376 KB
testcase_03 AC 518 ms
78,080 KB
testcase_04 AC 439 ms
78,240 KB
testcase_05 AC 462 ms
78,212 KB
testcase_06 AC 362 ms
78,044 KB
testcase_07 AC 353 ms
77,384 KB
testcase_08 AC 542 ms
78,372 KB
testcase_09 AC 543 ms
78,268 KB
testcase_10 AC 545 ms
78,332 KB
testcase_11 AC 543 ms
78,532 KB
testcase_12 AC 542 ms
77,708 KB
testcase_13 AC 357 ms
77,064 KB
testcase_14 AC 378 ms
76,848 KB
testcase_15 AC 227 ms
78,216 KB
testcase_16 AC 193 ms
78,048 KB
testcase_17 AC 441 ms
78,080 KB
testcase_18 AC 425 ms
78,468 KB
testcase_19 AC 310 ms
78,804 KB
testcase_20 AC 147 ms
78,680 KB
testcase_21 AC 254 ms
78,708 KB
testcase_22 AC 508 ms
78,176 KB
testcase_23 AC 154 ms
78,324 KB
testcase_24 AC 119 ms
77,940 KB
testcase_25 AC 348 ms
78,188 KB
testcase_26 AC 318 ms
78,124 KB
testcase_27 AC 319 ms
78,560 KB
testcase_28 AC 155 ms
78,392 KB
testcase_29 AC 412 ms
77,916 KB
testcase_30 AC 235 ms
78,244 KB
testcase_31 AC 416 ms
78,416 KB
testcase_32 AC 231 ms
78,100 KB
testcase_33 AC 165 ms
78,172 KB
testcase_34 AC 321 ms
78,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


N,Q = map(int,input().split())

def solve(s,t):
    
    S = []
    T = []
    for i in range(61):
        if (s>>i)&1:
            S.append(i)
        if (t>>i)&1:
            T.append(i)
    if len(S) == 0:
        return len(T)
    while S[-1]==T[-1]:
        S.pop()
        T.pop()
        if len(S)==0:
            break
    if len(S) == 0:
        return len(T)
    cost = T[-1] - S[0] - (len(S) - 1)
    cost +=  (len(T)-1)
    return cost
for _ in range(Q):
    s,t = map(int,input().split())
    print(solve(s,t),flush=True)

0