結果

問題 No.1742 Binary Indexed Train
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-19 12:09:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 390 ms / 3,000 ms
コード長 601 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-11-23 13:47:45
合計ジャッジ時間 10,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 47 ms
51,712 KB
testcase_03 AC 387 ms
80,640 KB
testcase_04 AC 385 ms
80,256 KB
testcase_05 AC 383 ms
80,128 KB
testcase_06 AC 111 ms
77,184 KB
testcase_07 AC 106 ms
77,440 KB
testcase_08 AC 379 ms
83,328 KB
testcase_09 AC 382 ms
83,456 KB
testcase_10 AC 384 ms
83,456 KB
testcase_11 AC 389 ms
83,328 KB
testcase_12 AC 390 ms
83,712 KB
testcase_13 AC 267 ms
79,872 KB
testcase_14 AC 286 ms
79,872 KB
testcase_15 AC 115 ms
77,184 KB
testcase_16 AC 113 ms
70,784 KB
testcase_17 AC 175 ms
78,208 KB
testcase_18 AC 186 ms
78,720 KB
testcase_19 AC 110 ms
76,800 KB
testcase_20 AC 61 ms
63,872 KB
testcase_21 AC 121 ms
77,056 KB
testcase_22 AC 199 ms
78,848 KB
testcase_23 AC 71 ms
66,048 KB
testcase_24 AC 64 ms
64,128 KB
testcase_25 AC 224 ms
79,488 KB
testcase_26 AC 124 ms
77,056 KB
testcase_27 AC 205 ms
79,104 KB
testcase_28 AC 71 ms
67,072 KB
testcase_29 AC 214 ms
79,360 KB
testcase_30 AC 169 ms
77,312 KB
testcase_31 AC 350 ms
79,744 KB
testcase_32 AC 166 ms
77,184 KB
testcase_33 AC 93 ms
68,608 KB
testcase_34 AC 250 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

def popcount(x):
    x = x - ((x >> 1) & 0x5555555555555555)
    x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333)
    x = (x + (x >> 4)) & 0x0f0f0f0f0f0f0f0f
    x = x + (x >> 8)
    x = x + (x >> 16)
    x = x + (x >> 32)
    return x & 0x0000007f

n, q = map(int, input().split())
for i in range(q):
    s, t = map(int, input().split())
    for i in range(n+1):
        if (s-1)//(1<<i) != (t-1)//(1<<i):
            mid = (1<<i)*(t//(1<<i))
    ans = popcount(mid-s)+popcount(t-mid)
    print(ans)
0