結果

問題 No.1742 Binary Indexed Train
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-12 23:29:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 3,000 ms
コード長 305 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-25 21:49:57
合計ジャッジ時間 9,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 325 ms
75,776 KB
testcase_04 AC 313 ms
76,160 KB
testcase_05 AC 312 ms
76,160 KB
testcase_06 AC 283 ms
76,544 KB
testcase_07 AC 276 ms
76,032 KB
testcase_08 AC 367 ms
76,032 KB
testcase_09 AC 372 ms
76,032 KB
testcase_10 AC 378 ms
75,904 KB
testcase_11 AC 366 ms
76,160 KB
testcase_12 AC 385 ms
76,032 KB
testcase_13 AC 287 ms
76,288 KB
testcase_14 AC 292 ms
76,288 KB
testcase_15 AC 132 ms
76,288 KB
testcase_16 AC 110 ms
75,776 KB
testcase_17 AC 277 ms
75,776 KB
testcase_18 AC 264 ms
75,904 KB
testcase_19 AC 189 ms
75,776 KB
testcase_20 AC 75 ms
70,528 KB
testcase_21 AC 151 ms
75,904 KB
testcase_22 AC 284 ms
75,776 KB
testcase_23 AC 78 ms
70,272 KB
testcase_24 AC 67 ms
67,968 KB
testcase_25 AC 222 ms
76,032 KB
testcase_26 AC 200 ms
76,188 KB
testcase_27 AC 210 ms
75,848 KB
testcase_28 AC 84 ms
73,344 KB
testcase_29 AC 271 ms
76,160 KB
testcase_30 AC 149 ms
76,048 KB
testcase_31 AC 304 ms
75,904 KB
testcase_32 AC 146 ms
75,832 KB
testcase_33 AC 93 ms
75,648 KB
testcase_34 AC 216 ms
75,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())

for i in range(q):
    s,t = map(int,input().split())
    s += 1<<n
    t += 1<<n
    ans = 0
    while s < t:
        if s & 1:
            s += 1
            ans += 1
        if t & 1:
            t -= 1
            ans += 1
        s >>= 1
        t >>= 1
    print(ans)
0