結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,472 KB
testcase_01 AC 31 ms
52,620 KB
testcase_02 AC 31 ms
52,736 KB
testcase_03 AC 286 ms
78,044 KB
testcase_04 AC 287 ms
77,832 KB
testcase_05 AC 288 ms
77,832 KB
testcase_06 AC 110 ms
77,312 KB
testcase_07 AC 110 ms
77,312 KB
testcase_08 AC 290 ms
77,952 KB
testcase_09 AC 298 ms
77,568 KB
testcase_10 AC 306 ms
77,752 KB
testcase_11 AC 316 ms
77,588 KB
testcase_12 AC 307 ms
77,772 KB
testcase_13 AC 274 ms
78,080 KB
testcase_14 AC 281 ms
77,696 KB
testcase_15 AC 88 ms
76,544 KB
testcase_16 AC 88 ms
76,416 KB
testcase_17 AC 153 ms
77,428 KB
testcase_18 AC 162 ms
77,568 KB
testcase_19 AC 117 ms
76,996 KB
testcase_20 AC 65 ms
76,032 KB
testcase_21 AC 99 ms
76,288 KB
testcase_22 AC 177 ms
77,952 KB
testcase_23 AC 63 ms
76,292 KB
testcase_24 AC 57 ms
73,216 KB
testcase_25 AC 171 ms
76,800 KB
testcase_26 AC 123 ms
77,056 KB
testcase_27 AC 155 ms
76,896 KB
testcase_28 AC 74 ms
76,160 KB
testcase_29 AC 180 ms
77,184 KB
testcase_30 AC 131 ms
77,056 KB
testcase_31 AC 274 ms
78,208 KB
testcase_32 AC 126 ms
76,292 KB
testcase_33 AC 74 ms
76,092 KB
testcase_34 AC 188 ms
77,440 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