結果

問題 No.1742 Binary Indexed Train
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-12 23:29:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 411 ms / 3,000 ms
コード長 305 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-05-04 11:19:01
合計ジャッジ時間 11,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 44 ms
51,456 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 363 ms
76,032 KB
testcase_04 AC 346 ms
75,904 KB
testcase_05 AC 361 ms
76,032 KB
testcase_06 AC 308 ms
76,672 KB
testcase_07 AC 294 ms
76,416 KB
testcase_08 AC 400 ms
75,904 KB
testcase_09 AC 407 ms
75,776 KB
testcase_10 AC 406 ms
76,032 KB
testcase_11 AC 402 ms
75,904 KB
testcase_12 AC 411 ms
75,904 KB
testcase_13 AC 313 ms
76,160 KB
testcase_14 AC 328 ms
75,776 KB
testcase_15 AC 150 ms
75,776 KB
testcase_16 AC 125 ms
76,160 KB
testcase_17 AC 328 ms
76,160 KB
testcase_18 AC 295 ms
75,776 KB
testcase_19 AC 209 ms
75,904 KB
testcase_20 AC 84 ms
70,144 KB
testcase_21 AC 165 ms
75,776 KB
testcase_22 AC 320 ms
76,032 KB
testcase_23 AC 85 ms
70,656 KB
testcase_24 AC 74 ms
67,584 KB
testcase_25 AC 242 ms
76,032 KB
testcase_26 AC 222 ms
76,160 KB
testcase_27 AC 229 ms
76,032 KB
testcase_28 AC 94 ms
73,088 KB
testcase_29 AC 294 ms
76,032 KB
testcase_30 AC 164 ms
75,904 KB
testcase_31 AC 324 ms
76,032 KB
testcase_32 AC 161 ms
76,032 KB
testcase_33 AC 108 ms
75,904 KB
testcase_34 AC 232 ms
75,904 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