結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-11-09 23:02:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 3,000 ms
コード長 357 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 77,496 KB
最終ジャッジ日時 2024-11-25 11:24:49
合計ジャッジ時間 10,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,496 KB
testcase_01 AC 32 ms
52,500 KB
testcase_02 AC 32 ms
52,560 KB
testcase_03 AC 332 ms
77,012 KB
testcase_04 AC 317 ms
77,312 KB
testcase_05 AC 315 ms
77,248 KB
testcase_06 AC 275 ms
76,492 KB
testcase_07 AC 275 ms
76,488 KB
testcase_08 AC 365 ms
77,376 KB
testcase_09 AC 361 ms
77,144 KB
testcase_10 AC 361 ms
77,244 KB
testcase_11 AC 426 ms
77,080 KB
testcase_12 AC 375 ms
77,252 KB
testcase_13 AC 268 ms
76,240 KB
testcase_14 AC 285 ms
76,112 KB
testcase_15 AC 149 ms
77,040 KB
testcase_16 AC 154 ms
76,988 KB
testcase_17 AC 338 ms
77,264 KB
testcase_18 AC 328 ms
76,912 KB
testcase_19 AC 232 ms
76,876 KB
testcase_20 AC 108 ms
76,808 KB
testcase_21 AC 191 ms
77,496 KB
testcase_22 AC 340 ms
77,360 KB
testcase_23 AC 108 ms
76,660 KB
testcase_24 AC 89 ms
76,680 KB
testcase_25 AC 248 ms
77,244 KB
testcase_26 AC 248 ms
76,908 KB
testcase_27 AC 254 ms
76,840 KB
testcase_28 AC 110 ms
76,860 KB
testcase_29 AC 274 ms
77,212 KB
testcase_30 AC 164 ms
76,936 KB
testcase_31 AC 300 ms
77,088 KB
testcase_32 AC 175 ms
77,032 KB
testcase_33 AC 119 ms
76,968 KB
testcase_34 AC 245 ms
77,060 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