結果

問題 No.1742 Binary Indexed Train
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-07 18:54:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 675 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 78,628 KB
最終ジャッジ日時 2024-09-27 19:29:37
合計ジャッジ時間 11,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,372 KB
testcase_01 AC 40 ms
56,688 KB
testcase_02 AC 38 ms
55,956 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 305 ms
77,552 KB
testcase_07 AC 297 ms
77,592 KB
testcase_08 AC 476 ms
77,928 KB
testcase_09 AC 464 ms
78,220 KB
testcase_10 AC 463 ms
77,748 KB
testcase_11 AC 470 ms
77,988 KB
testcase_12 AC 458 ms
78,440 KB
testcase_13 AC 316 ms
76,964 KB
testcase_14 AC 309 ms
76,808 KB
testcase_15 AC 186 ms
78,504 KB
testcase_16 AC 160 ms
77,720 KB
testcase_17 AC 348 ms
77,868 KB
testcase_18 AC 360 ms
78,300 KB
testcase_19 AC 264 ms
77,872 KB
testcase_20 AC 121 ms
77,784 KB
testcase_21 AC 201 ms
77,952 KB
testcase_22 AC 400 ms
78,628 KB
testcase_23 AC 127 ms
77,928 KB
testcase_24 AC 103 ms
77,356 KB
testcase_25 AC 299 ms
77,604 KB
testcase_26 AC 258 ms
78,556 KB
testcase_27 AC 276 ms
78,452 KB
testcase_28 AC 134 ms
77,968 KB
testcase_29 AC 362 ms
78,408 KB
testcase_30 AC 195 ms
77,880 KB
testcase_31 AC 363 ms
77,752 KB
testcase_32 AC 186 ms
78,188 KB
testcase_33 AC 133 ms
78,036 KB
testcase_34 AC 254 ms
78,032 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(60):
        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