結果

問題 No.1245 ANDORゲーム(calc)
ユーザー titiatitia
提出日時 2020-10-03 01:20:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 99,728 KB
最終ジャッジ日時 2024-07-18 02:31:22
合計ジャッジ時間 7,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,012 KB
testcase_01 AC 36 ms
52,216 KB
testcase_02 AC 36 ms
52,624 KB
testcase_03 AC 34 ms
52,556 KB
testcase_04 AC 34 ms
52,460 KB
testcase_05 AC 34 ms
52,004 KB
testcase_06 AC 35 ms
52,932 KB
testcase_07 AC 62 ms
71,480 KB
testcase_08 AC 62 ms
70,456 KB
testcase_09 AC 63 ms
70,828 KB
testcase_10 AC 66 ms
73,492 KB
testcase_11 AC 217 ms
94,004 KB
testcase_12 AC 210 ms
94,228 KB
testcase_13 AC 216 ms
94,492 KB
testcase_14 AC 217 ms
94,356 KB
testcase_15 AC 208 ms
94,628 KB
testcase_16 AC 211 ms
94,240 KB
testcase_17 AC 187 ms
95,648 KB
testcase_18 AC 188 ms
96,324 KB
testcase_19 AC 192 ms
95,208 KB
testcase_20 AC 194 ms
94,668 KB
testcase_21 AC 195 ms
95,456 KB
testcase_22 AC 204 ms
95,588 KB
testcase_23 AC 190 ms
94,444 KB
testcase_24 AC 171 ms
94,512 KB
testcase_25 AC 111 ms
99,440 KB
testcase_26 AC 144 ms
99,728 KB
testcase_27 AC 185 ms
97,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
A=list(map(int,input().split()))
S=input().strip()
T=list(map(int,input().split()))

X=[-1]*31
X2=[-1]*31
score=0

for i in range(N):
    a=A[i]
    s=int(S[i])
    for j in range(31):
        if a & (1<<j) == 0:
            if s==0:
                if X[j]==-1:
                    X[j]=0
                    X2[j]=0
                elif X2[j]==1:
                    X2[j]=0
                    score+=1<<j
        else:
            if s==1:
                if X[j]==-1:
                    X[j]=1
                    X2[j]=1
                elif X2[j]==0:
                    X2[j]=1
                    score+=1<<j
    #print(X)

for t in T:
    score2=0
    for j in range(31):
        if X[j]==0:
            if t & (1<<j) !=0:
                score2+=1<<j
        elif X[j]==1:
            if t & (1<<j) ==0:
                score2+=1<<j

    print(score+score2)
            
                
            
         
0