結果

問題 No.1742 Binary Indexed Train
ユーザー tamatotamato
提出日時 2021-11-12 22:11:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 567 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 161,280 KB
最終ジャッジ日時 2024-11-25 19:02:52
合計ジャッジ時間 62,261 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,088 KB
testcase_01 AC 38 ms
131,200 KB
testcase_02 AC 41 ms
65,848 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 139 ms
82,688 KB
testcase_07 AC 146 ms
161,280 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 330 ms
77,952 KB
testcase_16 AC 554 ms
76,544 KB
testcase_17 AC 491 ms
81,280 KB
testcase_18 AC 544 ms
77,824 KB
testcase_19 AC 152 ms
76,928 KB
testcase_20 AC 71 ms
69,504 KB
testcase_21 AC 286 ms
76,672 KB
testcase_22 AC 630 ms
78,080 KB
testcase_23 AC 150 ms
76,800 KB
testcase_24 AC 102 ms
76,416 KB
testcase_25 AC 2,065 ms
83,072 KB
testcase_26 AC 194 ms
77,084 KB
testcase_27 AC 1,306 ms
78,336 KB
testcase_28 AC 97 ms
76,288 KB
testcase_29 AC 952 ms
78,592 KB
testcase_30 AC 2,207 ms
78,208 KB
testcase_31 TLE -
testcase_32 AC 2,184 ms
78,208 KB
testcase_33 AC 792 ms
76,672 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
            s = s_new
            ans += 1
        print(ans)


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