結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,804 KB
testcase_01 AC 36 ms
52,276 KB
testcase_02 AC 33 ms
52,524 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 252 ms
76,520 KB
testcase_09 AC 253 ms
76,168 KB
testcase_10 AC 246 ms
76,540 KB
testcase_11 AC 238 ms
76,284 KB
testcase_12 AC 248 ms
76,304 KB
testcase_13 AC 360 ms
76,780 KB
testcase_14 AC 391 ms
76,236 KB
testcase_15 AC 69 ms
76,140 KB
testcase_16 AC 70 ms
70,988 KB
testcase_17 WA -
testcase_18 AC 97 ms
76,256 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 71 ms
75,908 KB
testcase_22 WA -
testcase_23 AC 53 ms
64,848 KB
testcase_24 AC 47 ms
63,260 KB
testcase_25 AC 133 ms
76,164 KB
testcase_26 WA -
testcase_27 AC 120 ms
76,264 KB
testcase_28 AC 47 ms
66,432 KB
testcase_29 AC 116 ms
76,448 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