結果

問題 No.1245 ANDORゲーム(calc)
ユーザー 👑 KazunKazun
提出日時 2021-06-16 04:31:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 112,352 KB
最終ジャッジ日時 2024-12-29 10:26:24
合計ジャッジ時間 10,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 43 ms
52,608 KB
testcase_04 AC 45 ms
52,224 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 92 ms
76,928 KB
testcase_08 AC 79 ms
74,368 KB
testcase_09 AC 88 ms
77,312 KB
testcase_10 AC 85 ms
76,920 KB
testcase_11 AC 417 ms
111,716 KB
testcase_12 AC 376 ms
112,348 KB
testcase_13 AC 377 ms
111,988 KB
testcase_14 AC 363 ms
112,324 KB
testcase_15 AC 374 ms
112,288 KB
testcase_16 AC 379 ms
112,352 KB
testcase_17 AC 346 ms
110,672 KB
testcase_18 AC 343 ms
109,692 KB
testcase_19 AC 348 ms
110,060 KB
testcase_20 AC 367 ms
111,836 KB
testcase_21 AC 339 ms
110,900 KB
testcase_22 AC 349 ms
110,976 KB
testcase_23 AC 387 ms
111,632 KB
testcase_24 AC 340 ms
112,132 KB
testcase_25 AC 269 ms
108,168 KB
testcase_26 AC 272 ms
107,660 KB
testcase_27 AC 314 ms
111,428 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