結果

問題 No.1742 Binary Indexed Train
ユーザー tamatotamato
提出日時 2021-11-12 22:27:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 441 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 152,264 KB
最終ジャッジ日時 2024-11-25 19:38:52
合計ジャッジ時間 68,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,376 KB
testcase_01 TLE -
testcase_02 AC 36 ms
60,624 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 241 ms
83,024 KB
testcase_09 AC 242 ms
152,264 KB
testcase_10 AC 237 ms
83,388 KB
testcase_11 AC 235 ms
141,896 KB
testcase_12 AC 238 ms
83,224 KB
testcase_13 AC 355 ms
135,456 KB
testcase_14 AC 398 ms
83,252 KB
testcase_15 AC 67 ms
152,172 KB
testcase_16 AC 72 ms
77,364 KB
testcase_17 TLE -
testcase_18 AC 97 ms
83,068 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 70 ms
135,408 KB
testcase_22 TLE -
testcase_23 AC 51 ms
123,932 KB
testcase_24 AC 47 ms
70,956 KB
testcase_25 AC 136 ms
136,940 KB
testcase_26 TLE -
testcase_27 AC 120 ms
76,320 KB
testcase_28 AC 50 ms
66,400 KB
testcase_29 AC 120 ms
76,008 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)
            s += min(x, y)
            ans += 1
        assert ans <= 130
        print(ans)


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