結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,236 KB
testcase_01 AC 31 ms
52,668 KB
testcase_02 AC 32 ms
52,748 KB
testcase_03 AC 704 ms
77,232 KB
testcase_04 AC 697 ms
76,856 KB
testcase_05 AC 694 ms
77,104 KB
testcase_06 AC 291 ms
76,916 KB
testcase_07 AC 294 ms
77,052 KB
testcase_08 AC 713 ms
77,240 KB
testcase_09 AC 751 ms
76,980 KB
testcase_10 AC 709 ms
76,860 KB
testcase_11 AC 750 ms
77,000 KB
testcase_12 AC 715 ms
76,872 KB
testcase_13 AC 675 ms
77,308 KB
testcase_14 AC 699 ms
77,244 KB
testcase_15 AC 195 ms
76,880 KB
testcase_16 AC 173 ms
76,568 KB
testcase_17 AC 382 ms
76,724 KB
testcase_18 AC 395 ms
76,856 KB
testcase_19 AC 267 ms
77,084 KB
testcase_20 AC 97 ms
76,864 KB
testcase_21 AC 202 ms
76,800 KB
testcase_22 AC 481 ms
77,032 KB
testcase_23 AC 116 ms
76,780 KB
testcase_24 AC 96 ms
76,924 KB
testcase_25 AC 442 ms
77,028 KB
testcase_26 AC 279 ms
76,724 KB
testcase_27 AC 398 ms
76,916 KB
testcase_28 AC 123 ms
77,040 KB
testcase_29 AC 432 ms
77,068 KB
testcase_30 AC 272 ms
77,184 KB
testcase_31 AC 661 ms
76,972 KB
testcase_32 AC 271 ms
76,896 KB
testcase_33 AC 142 ms
77,332 KB
testcase_34 AC 461 ms
76,880 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