結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,456 KB
testcase_01 AC 33 ms
52,496 KB
testcase_02 AC 32 ms
52,532 KB
testcase_03 AC 289 ms
76,416 KB
testcase_04 AC 289 ms
76,520 KB
testcase_05 AC 298 ms
76,012 KB
testcase_06 AC 256 ms
76,848 KB
testcase_07 AC 255 ms
76,616 KB
testcase_08 AC 347 ms
76,308 KB
testcase_09 AC 355 ms
76,240 KB
testcase_10 AC 351 ms
76,168 KB
testcase_11 AC 367 ms
76,132 KB
testcase_12 AC 362 ms
75,980 KB
testcase_13 AC 269 ms
76,248 KB
testcase_14 AC 278 ms
76,088 KB
testcase_15 AC 119 ms
76,288 KB
testcase_16 AC 98 ms
76,132 KB
testcase_17 AC 267 ms
76,348 KB
testcase_18 AC 255 ms
76,372 KB
testcase_19 AC 164 ms
76,352 KB
testcase_20 AC 66 ms
70,864 KB
testcase_21 AC 132 ms
76,296 KB
testcase_22 AC 265 ms
75,924 KB
testcase_23 AC 65 ms
72,008 KB
testcase_24 AC 57 ms
69,456 KB
testcase_25 AC 205 ms
76,296 KB
testcase_26 AC 191 ms
76,460 KB
testcase_27 AC 193 ms
75,828 KB
testcase_28 AC 72 ms
74,028 KB
testcase_29 AC 249 ms
76,192 KB
testcase_30 AC 139 ms
76,736 KB
testcase_31 AC 274 ms
75,832 KB
testcase_32 AC 127 ms
76,228 KB
testcase_33 AC 87 ms
76,332 KB
testcase_34 AC 211 ms
76,172 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