結果

問題 No.1742 Binary Indexed Train
ユーザー tamatotamato
提出日時 2021-11-12 22:29:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 448 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-11-25 19:41:18
合計ジャッジ時間 6,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,924 KB
testcase_01 RE -
testcase_02 AC 38 ms
52,680 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 266 ms
76,332 KB
testcase_09 AC 272 ms
76,372 KB
testcase_10 AC 259 ms
76,556 KB
testcase_11 AC 259 ms
76,552 KB
testcase_12 AC 260 ms
76,484 KB
testcase_13 AC 397 ms
76,220 KB
testcase_14 AC 419 ms
76,412 KB
testcase_15 AC 81 ms
76,296 KB
testcase_16 AC 83 ms
70,804 KB
testcase_17 RE -
testcase_18 AC 111 ms
76,780 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 76 ms
76,300 KB
testcase_22 RE -
testcase_23 AC 55 ms
66,084 KB
testcase_24 AC 50 ms
64,448 KB
testcase_25 AC 143 ms
76,216 KB
testcase_26 RE -
testcase_27 AC 129 ms
76,348 KB
testcase_28 AC 53 ms
66,684 KB
testcase_29 AC 127 ms
76,104 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