結果

問題 No.1742 Binary Indexed Train
ユーザー tamatotamato
提出日時 2021-11-12 22:13:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 581 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 164,512 KB
最終ジャッジ日時 2024-11-25 19:08:34
合計ジャッジ時間 59,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,776 KB
testcase_01 AC 39 ms
59,844 KB
testcase_02 AC 42 ms
138,660 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 132 ms
82,432 KB
testcase_07 AC 128 ms
82,356 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 316 ms
77,440 KB
testcase_16 AC 510 ms
76,544 KB
testcase_17 AC 481 ms
81,280 KB
testcase_18 AC 508 ms
77,696 KB
testcase_19 AC 144 ms
76,800 KB
testcase_20 AC 70 ms
69,376 KB
testcase_21 AC 271 ms
76,672 KB
testcase_22 AC 589 ms
77,696 KB
testcase_23 AC 142 ms
76,416 KB
testcase_24 AC 99 ms
76,544 KB
testcase_25 AC 2,054 ms
82,816 KB
testcase_26 AC 192 ms
77,184 KB
testcase_27 AC 1,190 ms
77,696 KB
testcase_28 AC 96 ms
76,416 KB
testcase_29 AC 870 ms
78,336 KB
testcase_30 AC 1,960 ms
78,208 KB
testcase_31 TLE -
testcase_32 AC 1,934 ms
78,592 KB
testcase_33 AC 726 ms
76,800 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
            p = 1
            for lv in range(61):
                if s % p == 0:
                    if s + p <= t:
                        s_new = s + p
                else:
                    break
                p <<= 1
            s = s_new
            ans += 1
        print(ans)


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