結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-11-09 23:02:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 459 ms / 3,000 ms
コード長 357 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-04 04:29:18
合計ジャッジ時間 10,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 378 ms
77,440 KB
testcase_04 AC 335 ms
77,312 KB
testcase_05 AC 372 ms
77,056 KB
testcase_06 AC 291 ms
76,288 KB
testcase_07 AC 278 ms
76,544 KB
testcase_08 AC 459 ms
77,244 KB
testcase_09 AC 372 ms
77,184 KB
testcase_10 AC 404 ms
76,928 KB
testcase_11 AC 412 ms
76,928 KB
testcase_12 AC 386 ms
77,568 KB
testcase_13 AC 287 ms
76,416 KB
testcase_14 AC 301 ms
76,240 KB
testcase_15 AC 154 ms
77,184 KB
testcase_16 AC 146 ms
77,056 KB
testcase_17 AC 367 ms
77,184 KB
testcase_18 AC 310 ms
77,032 KB
testcase_19 AC 202 ms
77,340 KB
testcase_20 AC 111 ms
77,328 KB
testcase_21 AC 163 ms
77,440 KB
testcase_22 AC 298 ms
77,312 KB
testcase_23 AC 111 ms
76,800 KB
testcase_24 AC 97 ms
77,056 KB
testcase_25 AC 262 ms
77,056 KB
testcase_26 AC 212 ms
77,524 KB
testcase_27 AC 216 ms
77,192 KB
testcase_28 AC 121 ms
77,328 KB
testcase_29 AC 301 ms
77,312 KB
testcase_30 AC 199 ms
76,928 KB
testcase_31 AC 313 ms
77,068 KB
testcase_32 AC 166 ms
77,184 KB
testcase_33 AC 115 ms
77,184 KB
testcase_34 AC 224 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(s, t, n):
    s += 1 << n
    t += 1 << n
    ans = 0
    while s < t:
        if s & 1:
            ans += 1
            s += 1
        if t & 1:
            t -= 1
            ans += 1
        s >>= 1
        t >>= 1

    return ans

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

for _ in range(q):
    s, t = map(int,input().split())
    print(solve(s, t, n))
0