結果
問題 | No.1742 Binary Indexed Train |
ユーザー | 👑 Kazun |
提出日時 | 2021-10-14 17:41:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 538 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,088 KB |
実行使用メモリ | 78,252 KB |
最終ジャッジ日時 | 2024-11-25 10:54:31 |
合計ジャッジ時間 | 8,054 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,952 KB |
testcase_01 | WA | - |
testcase_02 | AC | 35 ms
53,484 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 319 ms
77,932 KB |
testcase_09 | AC | 327 ms
78,232 KB |
testcase_10 | AC | 317 ms
78,252 KB |
testcase_11 | AC | 329 ms
77,904 KB |
testcase_12 | AC | 325 ms
77,724 KB |
testcase_13 | AC | 295 ms
77,772 KB |
testcase_14 | AC | 310 ms
77,784 KB |
testcase_15 | AC | 108 ms
76,476 KB |
testcase_16 | AC | 113 ms
76,832 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 112 ms
76,704 KB |
testcase_22 | AC | 192 ms
77,884 KB |
testcase_23 | AC | 89 ms
76,600 KB |
testcase_24 | AC | 76 ms
76,572 KB |
testcase_25 | AC | 203 ms
77,424 KB |
testcase_26 | WA | - |
testcase_27 | AC | 180 ms
77,408 KB |
testcase_28 | WA | - |
testcase_29 | AC | 198 ms
77,684 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
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)))