結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-10-22 20:23:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 801 ms / 3,000 ms
コード長 599 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-11-25 11:01:08
合計ジャッジ時間 16,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 639 ms
29,568 KB
testcase_04 AC 638 ms
29,696 KB
testcase_05 AC 649 ms
29,568 KB
testcase_06 AC 481 ms
24,960 KB
testcase_07 AC 495 ms
25,088 KB
testcase_08 AC 801 ms
32,256 KB
testcase_09 AC 794 ms
32,128 KB
testcase_10 AC 797 ms
32,256 KB
testcase_11 AC 793 ms
32,128 KB
testcase_12 AC 800 ms
32,000 KB
testcase_13 AC 641 ms
28,032 KB
testcase_14 AC 640 ms
29,696 KB
testcase_15 AC 182 ms
16,512 KB
testcase_16 AC 138 ms
13,696 KB
testcase_17 AC 589 ms
30,464 KB
testcase_18 AC 592 ms
28,928 KB
testcase_19 AC 334 ms
21,760 KB
testcase_20 AC 52 ms
11,648 KB
testcase_21 AC 221 ms
17,536 KB
testcase_22 AC 600 ms
30,464 KB
testcase_23 AC 67 ms
11,904 KB
testcase_24 AC 44 ms
11,136 KB
testcase_25 AC 425 ms
21,632 KB
testcase_26 AC 358 ms
23,040 KB
testcase_27 AC 389 ms
20,992 KB
testcase_28 AC 76 ms
12,544 KB
testcase_29 AC 589 ms
27,648 KB
testcase_30 AC 237 ms
16,640 KB
testcase_31 AC 629 ms
27,648 KB
testcase_32 AC 226 ms
16,512 KB
testcase_33 AC 98 ms
12,672 KB
testcase_34 AC 399 ms
21,504 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