結果

問題 No.1742 Binary Indexed Train
ユーザー puznekopuzneko
提出日時 2021-11-25 00:22:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 3,000 ms
コード長 643 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 123,044 KB
最終ジャッジ日時 2024-06-27 10:02:42
合計ジャッジ時間 7,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 187 ms
114,056 KB
testcase_04 AC 192 ms
113,900 KB
testcase_05 AC 187 ms
114,040 KB
testcase_06 AC 139 ms
109,568 KB
testcase_07 AC 137 ms
109,696 KB
testcase_08 AC 165 ms
122,720 KB
testcase_09 AC 163 ms
122,480 KB
testcase_10 AC 166 ms
122,812 KB
testcase_11 AC 163 ms
122,780 KB
testcase_12 AC 163 ms
123,044 KB
testcase_13 AC 150 ms
116,096 KB
testcase_14 AC 174 ms
113,380 KB
testcase_15 AC 75 ms
85,268 KB
testcase_16 AC 63 ms
76,672 KB
testcase_17 AC 123 ms
112,768 KB
testcase_18 AC 119 ms
109,568 KB
testcase_19 AC 104 ms
94,484 KB
testcase_20 AC 55 ms
66,560 KB
testcase_21 AC 79 ms
86,440 KB
testcase_22 AC 124 ms
113,532 KB
testcase_23 AC 55 ms
67,328 KB
testcase_24 AC 53 ms
64,640 KB
testcase_25 AC 107 ms
100,096 KB
testcase_26 AC 115 ms
97,036 KB
testcase_27 AC 101 ms
96,768 KB
testcase_28 AC 57 ms
70,784 KB
testcase_29 AC 117 ms
108,160 KB
testcase_30 AC 100 ms
88,116 KB
testcase_31 AC 166 ms
115,712 KB
testcase_32 AC 103 ms
87,960 KB
testcase_33 AC 65 ms
73,600 KB
testcase_34 AC 153 ms
99,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, q, *indata = map(int, stdin.read().split())
offset = 0
for i in range(q):
    s, t = indata[offset + 2*i],indata[offset + 2*i+1]
    ans = 0
    if s == 0:
        check = True
        while t > 0:
            kari = t & (-t)
            t -= kari
            ans += 1
    else:
        check = True
        while check:
            kari = s & (-s)
            if s + kari <= t:
                s += kari
                ans += 1
            else:
                check = False
        check = True
        while t > s:
            kari = t & (-t)
            t -= kari
            ans += 1
    print("{}".format(ans))
0