結果

問題 No.1742 Binary Indexed Train
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-13 01:56:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 3,000 ms
コード長 321 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 94,980 KB
最終ジャッジ日時 2024-05-04 18:22:38
合計ジャッジ時間 9,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,736 KB
testcase_01 AC 31 ms
51,840 KB
testcase_02 AC 31 ms
52,224 KB
testcase_03 AC 364 ms
94,268 KB
testcase_04 AC 387 ms
94,320 KB
testcase_05 AC 363 ms
94,308 KB
testcase_06 AC 184 ms
92,904 KB
testcase_07 AC 180 ms
92,844 KB
testcase_08 AC 373 ms
94,592 KB
testcase_09 AC 394 ms
94,980 KB
testcase_10 AC 376 ms
94,200 KB
testcase_11 AC 376 ms
94,600 KB
testcase_12 AC 377 ms
94,592 KB
testcase_13 AC 347 ms
92,800 KB
testcase_14 AC 356 ms
92,744 KB
testcase_15 AC 124 ms
81,024 KB
testcase_16 AC 122 ms
79,028 KB
testcase_17 AC 225 ms
92,996 KB
testcase_18 AC 231 ms
92,516 KB
testcase_19 AC 160 ms
87,028 KB
testcase_20 AC 84 ms
77,532 KB
testcase_21 AC 131 ms
81,988 KB
testcase_22 AC 237 ms
94,248 KB
testcase_23 AC 103 ms
77,696 KB
testcase_24 AC 94 ms
77,312 KB
testcase_25 AC 238 ms
86,528 KB
testcase_26 AC 165 ms
85,760 KB
testcase_27 AC 220 ms
84,700 KB
testcase_28 AC 101 ms
77,908 KB
testcase_29 AC 244 ms
90,244 KB
testcase_30 AC 187 ms
81,792 KB
testcase_31 AC 336 ms
93,960 KB
testcase_32 AC 182 ms
82,648 KB
testcase_33 AC 125 ms
77,824 KB
testcase_34 AC 248 ms
86,340 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