結果

問題 No.1742 Binary Indexed Train
ユーザー tamatotamato
提出日時 2021-11-12 22:12:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 597 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 160,332 KB
最終ジャッジ日時 2024-11-25 19:05:25
合計ジャッジ時間 59,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,388 KB
testcase_01 AC 38 ms
59,040 KB
testcase_02 AC 38 ms
64,376 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 120 ms
82,432 KB
testcase_07 AC 121 ms
156,708 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 295 ms
77,576 KB
testcase_16 AC 521 ms
76,724 KB
testcase_17 AC 427 ms
81,228 KB
testcase_18 AC 490 ms
77,380 KB
testcase_19 AC 128 ms
76,916 KB
testcase_20 AC 58 ms
70,016 KB
testcase_21 AC 253 ms
76,744 KB
testcase_22 AC 566 ms
77,488 KB
testcase_23 AC 125 ms
76,672 KB
testcase_24 AC 82 ms
75,940 KB
testcase_25 AC 1,864 ms
83,048 KB
testcase_26 AC 174 ms
76,664 KB
testcase_27 AC 1,194 ms
78,492 KB
testcase_28 AC 79 ms
76,416 KB
testcase_29 AC 869 ms
78,568 KB
testcase_30 AC 1,989 ms
78,212 KB
testcase_31 TLE -
testcase_32 AC 2,004 ms
77,780 KB
testcase_33 AC 724 ms
77,044 KB
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
            for lv in range(61):
                p = 1 << lv
                if s % p == 0:
                    if s + p <= t:
                        s_new = s + p
                else:
                    break
            assert s != s_new
            s = s_new
            ans += 1
        print(ans)


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