結果

問題 No.1245 ANDORゲーム(calc)
ユーザー 👑 KazunKazun
提出日時 2021-06-16 04:31:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 113,116 KB
最終ジャッジ日時 2024-06-09 07:20:40
合計ジャッジ時間 8,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,420 KB
testcase_01 AC 32 ms
53,128 KB
testcase_02 AC 33 ms
53,396 KB
testcase_03 AC 32 ms
53,748 KB
testcase_04 AC 32 ms
53,404 KB
testcase_05 AC 33 ms
52,932 KB
testcase_06 AC 32 ms
53,208 KB
testcase_07 AC 70 ms
76,872 KB
testcase_08 AC 63 ms
74,496 KB
testcase_09 AC 69 ms
77,184 KB
testcase_10 AC 70 ms
76,968 KB
testcase_11 AC 327 ms
111,716 KB
testcase_12 AC 309 ms
113,116 KB
testcase_13 AC 297 ms
112,100 KB
testcase_14 AC 302 ms
112,200 KB
testcase_15 AC 307 ms
112,284 KB
testcase_16 AC 308 ms
111,992 KB
testcase_17 AC 287 ms
110,924 KB
testcase_18 AC 279 ms
109,428 KB
testcase_19 AC 282 ms
110,152 KB
testcase_20 AC 294 ms
111,980 KB
testcase_21 AC 276 ms
110,884 KB
testcase_22 AC 283 ms
110,968 KB
testcase_23 AC 300 ms
111,380 KB
testcase_24 AC 284 ms
112,408 KB
testcase_25 AC 214 ms
107,524 KB
testcase_26 AC 224 ms
107,788 KB
testcase_27 AC 269 ms
111,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import __and__,__or__
from sys import stdout
write=stdout.write

N,Q=map(int,input().split())
A=["*"]+list(map(int,input().split()))
S=["*"]+list(map(int,input()))
T=["*"]+list(map(int,input().split()))

a_bit=30

V=[[0,(1<<a_bit)-1] for _ in range(N+1)]
U=[[0,0] for _ in range(a_bit)]

for i in range(1,N+1):
    a=A[i]; s=S[i]
    op=__or__ if s else __and__

    V[i][0]=op(V[i-1][0],a)
    V[i][1]=op(V[i-1][1],a)

    b=1
    for k in range(a_bit):
        if s==0:
            for m in [0,1]:
                if V[i-1][m]&b==b and V[i][m]&b==0:
                    U[k][m]+=b
        else:
            for m in [0,1]:
                if V[i-1][m]&b==0 and V[i][m]&b==b:
                    U[k][m]+=b
        b<<=1

X=[]; X_append=X.append
for t in T[1:]:
    x=0
    for k in range(a_bit):
        x+=U[k][t&1]
        t>>=1
    X_append(x)

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