結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,748 KB
testcase_01 TLE -
testcase_02 AC 38 ms
59,592 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 278 ms
82,288 KB
testcase_09 AC 269 ms
152,932 KB
testcase_10 AC 267 ms
81,836 KB
testcase_11 AC 265 ms
142,656 KB
testcase_12 AC 266 ms
81,916 KB
testcase_13 AC 383 ms
135,612 KB
testcase_14 AC 414 ms
81,864 KB
testcase_15 AC 80 ms
152,332 KB
testcase_16 AC 82 ms
79,872 KB
testcase_17 TLE -
testcase_18 AC 116 ms
81,792 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 85 ms
135,680 KB
testcase_22 TLE -
testcase_23 AC 52 ms
125,184 KB
testcase_24 AC 48 ms
69,376 KB
testcase_25 AC 151 ms
135,072 KB
testcase_26 TLE -
testcase_27 AC 128 ms
76,836 KB
testcase_28 AC 51 ms
68,096 KB
testcase_29 AC 124 ms
76,544 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.readline

    N, Q = map(int, input().split())
    for _ in range(Q):
        s, t = map(int, input().split())
        ans = 0
        while t != s:
            s_new = s
            x = s_new & (-s_new)
            y = 1 << ((t-s).bit_length() - 1)
            s_new += min(x, y)
            s = s_new
            ans += 1
        print(ans)


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