結果

問題 No.1742 Binary Indexed Train
ユーザー 👑 rin204rin204
提出日時 2022-01-23 08:08:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 3,000 ms
コード長 281 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 76,720 KB
最終ジャッジ日時 2024-05-06 18:29:37
合計ジャッジ時間 10,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,892 KB
testcase_01 AC 39 ms
53,420 KB
testcase_02 AC 35 ms
52,192 KB
testcase_03 AC 315 ms
76,100 KB
testcase_04 AC 345 ms
76,144 KB
testcase_05 AC 311 ms
76,052 KB
testcase_06 AC 271 ms
76,720 KB
testcase_07 AC 259 ms
76,164 KB
testcase_08 AC 368 ms
76,112 KB
testcase_09 AC 363 ms
75,960 KB
testcase_10 AC 360 ms
76,052 KB
testcase_11 AC 361 ms
75,852 KB
testcase_12 AC 366 ms
76,164 KB
testcase_13 AC 295 ms
76,108 KB
testcase_14 AC 302 ms
76,000 KB
testcase_15 AC 121 ms
76,260 KB
testcase_16 AC 102 ms
76,104 KB
testcase_17 AC 277 ms
76,192 KB
testcase_18 AC 264 ms
76,312 KB
testcase_19 AC 188 ms
76,200 KB
testcase_20 AC 67 ms
70,804 KB
testcase_21 AC 143 ms
76,456 KB
testcase_22 AC 284 ms
76,160 KB
testcase_23 AC 71 ms
71,840 KB
testcase_24 AC 62 ms
69,752 KB
testcase_25 AC 214 ms
76,544 KB
testcase_26 AC 201 ms
76,388 KB
testcase_27 AC 205 ms
76,484 KB
testcase_28 AC 79 ms
74,328 KB
testcase_29 AC 266 ms
76,208 KB
testcase_30 AC 137 ms
76,524 KB
testcase_31 AC 286 ms
76,500 KB
testcase_32 AC 137 ms
76,112 KB
testcase_33 AC 89 ms
76,456 KB
testcase_34 AC 212 ms
76,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, Q = map(int, input().split())
for _ in range(Q):
    s, t = map(int, input().split())
    ans = 0
    while s != t:
        if s & 1:
            s += 1
            ans += 1
        if t & 1:
            t -= 1
            ans += 1
        s >>= 1
        t >>= 1
    print(ans)
0