結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,280 KB
testcase_01 TLE -
testcase_02 AC 34 ms
59,916 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 241 ms
83,388 KB
testcase_09 AC 237 ms
152,012 KB
testcase_10 AC 235 ms
83,636 KB
testcase_11 AC 239 ms
142,604 KB
testcase_12 AC 239 ms
83,052 KB
testcase_13 AC 359 ms
137,268 KB
testcase_14 AC 379 ms
83,128 KB
testcase_15 AC 70 ms
152,244 KB
testcase_16 AC 70 ms
78,596 KB
testcase_17 TLE -
testcase_18 AC 96 ms
83,388 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 69 ms
135,272 KB
testcase_22 TLE -
testcase_23 AC 51 ms
125,344 KB
testcase_24 AC 46 ms
70,492 KB
testcase_25 AC 137 ms
137,152 KB
testcase_26 TLE -
testcase_27 AC 122 ms
76,328 KB
testcase_28 AC 49 ms
67,220 KB
testcase_29 AC 115 ms
76,092 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
        print(ans)


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