結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-10-16 11:33:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 3,000 ms
コード長 427 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 91,220 KB
最終ジャッジ日時 2024-05-04 04:10:45
合計ジャッジ時間 10,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 407 ms
90,756 KB
testcase_04 AC 401 ms
90,684 KB
testcase_05 AC 395 ms
90,748 KB
testcase_06 AC 210 ms
90,200 KB
testcase_07 AC 207 ms
90,112 KB
testcase_08 AC 395 ms
90,112 KB
testcase_09 AC 431 ms
90,752 KB
testcase_10 AC 412 ms
91,136 KB
testcase_11 AC 428 ms
90,496 KB
testcase_12 AC 391 ms
90,752 KB
testcase_13 AC 379 ms
91,220 KB
testcase_14 AC 393 ms
89,856 KB
testcase_15 AC 137 ms
80,384 KB
testcase_16 AC 131 ms
78,336 KB
testcase_17 AC 243 ms
90,360 KB
testcase_18 AC 249 ms
88,960 KB
testcase_19 AC 174 ms
84,992 KB
testcase_20 AC 99 ms
77,056 KB
testcase_21 AC 143 ms
80,512 KB
testcase_22 AC 278 ms
89,508 KB
testcase_23 AC 111 ms
77,312 KB
testcase_24 AC 106 ms
76,800 KB
testcase_25 AC 270 ms
83,968 KB
testcase_26 AC 185 ms
85,632 KB
testcase_27 AC 227 ms
83,840 KB
testcase_28 AC 104 ms
77,696 KB
testcase_29 AC 266 ms
87,936 KB
testcase_30 AC 188 ms
81,280 KB
testcase_31 AC 367 ms
91,004 KB
testcase_32 AC 190 ms
81,792 KB
testcase_33 AC 137 ms
77,824 KB
testcase_34 AC 282 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, q, st):
    answer = []
    for s, t in st:
        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())
st = [list(map(int,input().split())) for _ in range(q)]
answer = solve(n, q, st)

for i in answer:
    print(i)
0