結果

問題 No.1742 Binary Indexed Train
ユーザー 👑 KazunKazun
提出日時 2021-10-14 17:36:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 137,728 KB
最終ジャッジ日時 2024-11-25 10:55:04
合計ジャッジ時間 32,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,856 KB
testcase_01 TLE -
testcase_02 AC 39 ms
57,600 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 350 ms
83,328 KB
testcase_09 AC 354 ms
137,728 KB
testcase_10 AC 346 ms
83,584 KB
testcase_11 AC 351 ms
77,952 KB
testcase_12 AC 354 ms
78,108 KB
testcase_13 AC 316 ms
77,808 KB
testcase_14 AC 332 ms
77,444 KB
testcase_15 AC 116 ms
76,876 KB
testcase_16 AC 123 ms
76,832 KB
testcase_17 AC 189 ms
78,080 KB
testcase_18 AC 194 ms
77,844 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 127 ms
76,800 KB
testcase_22 AC 210 ms
77,804 KB
testcase_23 AC 97 ms
76,488 KB
testcase_24 AC 82 ms
76,416 KB
testcase_25 AC 216 ms
77,068 KB
testcase_26 TLE -
testcase_27 AC 201 ms
77,080 KB
testcase_28 AC 90 ms
76,476 KB
testcase_29 AC 212 ms
77,532 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 True:
        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