結果

問題 No.1742 Binary Indexed Train
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-13 01:56:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 3,000 ms
コード長 321 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 94,852 KB
最終ジャッジ日時 2024-11-26 07:59:15
合計ジャッジ時間 9,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 AC 31 ms
51,584 KB
testcase_03 AC 368 ms
94,316 KB
testcase_04 AC 354 ms
94,120 KB
testcase_05 AC 369 ms
94,080 KB
testcase_06 AC 176 ms
92,928 KB
testcase_07 AC 171 ms
92,964 KB
testcase_08 AC 369 ms
94,208 KB
testcase_09 AC 365 ms
94,468 KB
testcase_10 AC 366 ms
93,952 KB
testcase_11 AC 367 ms
94,852 KB
testcase_12 AC 373 ms
94,464 KB
testcase_13 AC 340 ms
92,640 KB
testcase_14 AC 360 ms
92,488 KB
testcase_15 AC 125 ms
81,024 KB
testcase_16 AC 124 ms
78,208 KB
testcase_17 AC 222 ms
92,868 KB
testcase_18 AC 225 ms
92,392 KB
testcase_19 AC 154 ms
87,120 KB
testcase_20 AC 96 ms
77,312 KB
testcase_21 AC 132 ms
81,792 KB
testcase_22 AC 235 ms
94,000 KB
testcase_23 AC 93 ms
77,056 KB
testcase_24 AC 84 ms
77,024 KB
testcase_25 AC 224 ms
86,272 KB
testcase_26 AC 166 ms
85,760 KB
testcase_27 AC 203 ms
84,684 KB
testcase_28 AC 89 ms
77,780 KB
testcase_29 AC 234 ms
89,736 KB
testcase_30 AC 163 ms
81,920 KB
testcase_31 AC 363 ms
93,836 KB
testcase_32 AC 165 ms
82,688 KB
testcase_33 AC 102 ms
77,756 KB
testcase_34 AC 241 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
query = [list(map(int, input().split())) for _ in range(Q)]
ans = []
for s, t in query:
    for i in range(N-1, -1, -1):
        m = ((s-1)//(1 << i)+1)*(1 << i)
        if t >= m:
            break
    ans.append(str(bin(s-m)).count('1')+str(bin(t-m)).count('1'))

print(*ans, sep='\n')
0