結果

問題 No.1742 Binary Indexed Train
ユーザー tamatotamato
提出日時 2021-11-12 22:30:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-05-04 09:44:22
合計ジャッジ時間 7,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 251 ms
76,508 KB
testcase_09 AC 249 ms
76,544 KB
testcase_10 AC 253 ms
76,828 KB
testcase_11 AC 246 ms
76,616 KB
testcase_12 AC 255 ms
76,708 KB
testcase_13 AC 389 ms
76,288 KB
testcase_14 AC 404 ms
76,288 KB
testcase_15 AC 68 ms
76,160 KB
testcase_16 AC 70 ms
70,300 KB
testcase_17 WA -
testcase_18 AC 106 ms
76,544 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 69 ms
76,160 KB
testcase_22 WA -
testcase_23 AC 57 ms
64,640 KB
testcase_24 AC 51 ms
62,848 KB
testcase_25 AC 140 ms
76,288 KB
testcase_26 WA -
testcase_27 AC 124 ms
76,288 KB
testcase_28 AC 55 ms
66,048 KB
testcase_29 AC 125 ms
76,160 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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())
        if s == 0:
            print(1)
            continue
        ans = 0
        while t != s:
            x = s & (-s)
            y = 1 << ((t-s).bit_length() - 1)
            s += min(x, y)
            ans += 1
        print(ans)


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