結果

問題 No.1742 Binary Indexed Train
ユーザー tamatotamato
提出日時 2021-11-12 22:29:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 448 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 83,224 KB
実行使用メモリ 77,136 KB
最終ジャッジ日時 2024-05-04 09:38:46
合計ジャッジ時間 5,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,396 KB
testcase_01 RE -
testcase_02 AC 33 ms
53,616 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 251 ms
76,712 KB
testcase_09 AC 257 ms
76,540 KB
testcase_10 AC 255 ms
76,516 KB
testcase_11 AC 247 ms
76,564 KB
testcase_12 AC 247 ms
76,300 KB
testcase_13 AC 379 ms
76,376 KB
testcase_14 AC 398 ms
76,420 KB
testcase_15 AC 72 ms
76,620 KB
testcase_16 AC 73 ms
70,944 KB
testcase_17 RE -
testcase_18 AC 103 ms
76,428 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 72 ms
76,356 KB
testcase_22 RE -
testcase_23 AC 53 ms
65,276 KB
testcase_24 AC 48 ms
64,160 KB
testcase_25 AC 142 ms
76,312 KB
testcase_26 RE -
testcase_27 AC 125 ms
76,764 KB
testcase_28 AC 50 ms
67,392 KB
testcase_29 AC 120 ms
76,460 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    N, Q = map(int, input().split())
    for _ in range(Q):
        s, t = map(int, input().split())
        ans = 0
        while t != s:
            x = s & (-s)
            y = 1 << ((t-s).bit_length() - 1)
            assert min(x, y) > 0
            s += min(x, y)
            ans += 1
        print(ans)


if __name__ == '__main__':
    main()
0