結果

問題 No.1742 Binary Indexed Train
ユーザー 👑 KazunKazun
提出日時 2021-10-14 17:45:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 3,000 ms
コード長 459 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-11-25 10:55:27
合計ジャッジ時間 8,556 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,116 KB
testcase_02 AC 37 ms
52,020 KB
testcase_03 AC 315 ms
77,584 KB
testcase_04 AC 326 ms
77,692 KB
testcase_05 AC 312 ms
78,208 KB
testcase_06 AC 121 ms
77,312 KB
testcase_07 AC 122 ms
77,312 KB
testcase_08 AC 313 ms
77,404 KB
testcase_09 AC 319 ms
77,512 KB
testcase_10 AC 321 ms
77,568 KB
testcase_11 AC 313 ms
77,756 KB
testcase_12 AC 315 ms
77,312 KB
testcase_13 AC 297 ms
77,996 KB
testcase_14 AC 313 ms
77,824 KB
testcase_15 AC 96 ms
76,288 KB
testcase_16 AC 98 ms
76,456 KB
testcase_17 AC 165 ms
77,256 KB
testcase_18 AC 168 ms
77,284 KB
testcase_19 AC 117 ms
76,760 KB
testcase_20 AC 66 ms
76,152 KB
testcase_21 AC 104 ms
76,288 KB
testcase_22 AC 182 ms
77,564 KB
testcase_23 AC 72 ms
76,160 KB
testcase_24 AC 66 ms
72,832 KB
testcase_25 AC 185 ms
76,916 KB
testcase_26 AC 124 ms
76,928 KB
testcase_27 AC 166 ms
76,556 KB
testcase_28 AC 70 ms
76,672 KB
testcase_29 AC 215 ms
77,140 KB
testcase_30 AC 137 ms
76,928 KB
testcase_31 AC 277 ms
78,048 KB
testcase_32 AC 133 ms
76,728 KB
testcase_33 AC 81 ms
76,288 KB
testcase_34 AC 198 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(S,T,N):
    k=1<<N
    while not((T-1)//k > (S-1)//k):
        k>>=1

    mid=k*((S+k-1)//k)
    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