結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-11-09 23:18:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 798 ms / 3,000 ms
コード長 343 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-05-04 04:29:06
合計ジャッジ時間 17,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 741 ms
76,820 KB
testcase_04 AC 747 ms
76,928 KB
testcase_05 AC 766 ms
76,800 KB
testcase_06 AC 325 ms
77,056 KB
testcase_07 AC 327 ms
77,056 KB
testcase_08 AC 756 ms
76,928 KB
testcase_09 AC 798 ms
77,056 KB
testcase_10 AC 766 ms
77,312 KB
testcase_11 AC 778 ms
77,056 KB
testcase_12 AC 761 ms
76,800 KB
testcase_13 AC 764 ms
76,928 KB
testcase_14 AC 762 ms
77,184 KB
testcase_15 AC 226 ms
76,672 KB
testcase_16 AC 206 ms
76,928 KB
testcase_17 AC 433 ms
77,056 KB
testcase_18 AC 439 ms
77,184 KB
testcase_19 AC 262 ms
77,184 KB
testcase_20 AC 111 ms
76,672 KB
testcase_21 AC 230 ms
76,800 KB
testcase_22 AC 460 ms
77,056 KB
testcase_23 AC 127 ms
76,928 KB
testcase_24 AC 106 ms
76,672 KB
testcase_25 AC 426 ms
76,928 KB
testcase_26 AC 286 ms
76,672 KB
testcase_27 AC 384 ms
76,544 KB
testcase_28 AC 127 ms
76,928 KB
testcase_29 AC 473 ms
77,056 KB
testcase_30 AC 310 ms
76,928 KB
testcase_31 AC 721 ms
77,056 KB
testcase_32 AC 337 ms
76,800 KB
testcase_33 AC 186 ms
77,184 KB
testcase_34 AC 536 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(s, t, n):
    mid = 0
    for i in range(n + 1):
        if (s - 1) // (1 << i) != (t - 1) // (1 << i):
            mid = (1 << i) * (t // (1 << i))
    return str(bin(mid - s)).count('1') + str(bin(t - mid)).count('1')


n, q=map(int,input().split())

for _ in range(q):
    s, t = map(int,input().split())
    print(solve(s, t, n))
0