結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-10-16 19:27:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 3,000 ms
コード長 599 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 91,508 KB
最終ジャッジ日時 2024-11-25 10:59:33
合計ジャッジ時間 10,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 394 ms
90,752 KB
testcase_04 AC 401 ms
91,264 KB
testcase_05 AC 395 ms
90,752 KB
testcase_06 AC 207 ms
90,456 KB
testcase_07 AC 215 ms
90,624 KB
testcase_08 AC 399 ms
90,628 KB
testcase_09 AC 396 ms
91,080 KB
testcase_10 AC 401 ms
90,880 KB
testcase_11 AC 408 ms
90,240 KB
testcase_12 AC 412 ms
90,368 KB
testcase_13 AC 378 ms
91,508 KB
testcase_14 AC 399 ms
89,728 KB
testcase_15 AC 144 ms
80,376 KB
testcase_16 AC 133 ms
78,476 KB
testcase_17 AC 252 ms
90,168 KB
testcase_18 AC 242 ms
89,484 KB
testcase_19 AC 170 ms
84,748 KB
testcase_20 AC 94 ms
77,404 KB
testcase_21 AC 149 ms
81,024 KB
testcase_22 AC 257 ms
89,764 KB
testcase_23 AC 97 ms
77,864 KB
testcase_24 AC 91 ms
76,800 KB
testcase_25 AC 245 ms
84,016 KB
testcase_26 AC 187 ms
85,624 KB
testcase_27 AC 223 ms
83,328 KB
testcase_28 AC 101 ms
77,568 KB
testcase_29 AC 264 ms
88,064 KB
testcase_30 AC 191 ms
81,536 KB
testcase_31 AC 395 ms
91,248 KB
testcase_32 AC 179 ms
81,440 KB
testcase_33 AC 115 ms
77,896 KB
testcase_34 AC 255 ms
85,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, q, st):
    answer = []
    for s, t in st:
        if 0 <= s < t <= 2 ** n:
            pass
        else:
            raise Exception
        ans = 0
        k=1<<n
        while not((t-1)//k > (s-1)//k):
            k>>=1
        mid=k*((s+k-1)//k)
        ans = bin(mid - s).count('1') + bin(t - mid).count('1')
        answer.append(ans)
    return answer


n, q = map(int,input().split())

if 1 <= n <= 60 and 1 <= q <= 10 ** 5:
    pass
else:
    raise Exception
    
st = [list(map(int,input().split())) for _ in range(q)]
answer = solve(n, q, st)

for i in answer:
    print(i)
0