結果

問題 No.1742 Binary Indexed Train
ユーザー 👑 KazunKazun
提出日時 2021-10-14 17:41:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 78,312 KB
最終ジャッジ日時 2024-05-04 04:07:35
合計ジャッジ時間 8,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 35 ms
51,584 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 324 ms
77,952 KB
testcase_09 AC 327 ms
78,080 KB
testcase_10 AC 324 ms
77,824 KB
testcase_11 AC 320 ms
78,080 KB
testcase_12 AC 329 ms
77,696 KB
testcase_13 AC 291 ms
77,824 KB
testcase_14 AC 300 ms
77,824 KB
testcase_15 AC 106 ms
76,288 KB
testcase_16 AC 113 ms
76,800 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 110 ms
76,544 KB
testcase_22 AC 192 ms
77,744 KB
testcase_23 AC 92 ms
76,288 KB
testcase_24 AC 75 ms
76,544 KB
testcase_25 AC 196 ms
76,928 KB
testcase_26 WA -
testcase_27 AC 174 ms
77,024 KB
testcase_28 WA -
testcase_29 AC 188 ms
77,696 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

popcount=lambda x:bin(x).count("1")

def solve(S,T,N):
    l=0; r=1<<N
    while r-l>1:
        mid=(l+r)>>1

        if T<=mid:
            r=mid
        elif mid<=S:
            l=mid
        else:
            break

    return popcount(mid-S)+popcount(T-mid)

#================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

N,Q=map(int,input().split())

Max=1<<N
Ans=[0]*Q
for quest in range(Q):
    S,T=map(int,input().split())
    Ans[quest]=solve(S,T,N)

write("\n".join(map(str,Ans)))
0