結果

問題 No.1245 ANDORゲーム(calc)
ユーザー daikisuyamadaikisuyama
提出日時 2020-10-02 22:48:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,768 KB
最終ジャッジ日時 2024-07-17 22:36:53
合計ジャッジ時間 8,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 39 ms
52,532 KB
testcase_07 AC 92 ms
76,800 KB
testcase_08 AC 71 ms
71,936 KB
testcase_09 AC 89 ms
76,688 KB
testcase_10 AC 86 ms
77,052 KB
testcase_11 AC 386 ms
96,512 KB
testcase_12 AC 383 ms
96,512 KB
testcase_13 AC 391 ms
96,512 KB
testcase_14 AC 400 ms
96,512 KB
testcase_15 AC 392 ms
96,588 KB
testcase_16 AC 393 ms
96,384 KB
testcase_17 AC 352 ms
96,768 KB
testcase_18 AC 332 ms
96,384 KB
testcase_19 AC 335 ms
96,256 KB
testcase_20 AC 363 ms
96,512 KB
testcase_21 AC 349 ms
96,640 KB
testcase_22 AC 345 ms
96,384 KB
testcase_23 AC 354 ms
96,256 KB
testcase_24 AC 328 ms
96,512 KB
testcase_25 AC 229 ms
94,592 KB
testcase_26 AC 239 ms
94,612 KB
testcase_27 AC 252 ms
96,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))
check=[[0,0] for i in range(32)]
s=list(map(int,input()))
for i in range(32):
    #初期状態が0か1か
    for k in range(2):
        x=k
        for j in range(n):
            if (a[j]>>i)&1:
                if s[j]==0:
                    if x==0:
                        check[i][k]+=0
                        x=0
                    else:
                        check[i][k]+=0
                        x=1
                else:
                    if x==0:
                        check[i][k]+=1
                        x=1
                    else:
                        check[i][k]+=0
                        x=1
            else:
                if s[j]==0:
                    if x==0:
                        check[i][k]+=0
                        x=0
                    else:
                        check[i][k]+=1
                        x=0
                else:
                    if x==0:
                        check[i][k]+=0
                        x=0
                    else:
                        check[i][k]+=0
                        x=1
#print(check)
t=list(map(int,input().split()))
for _ in range(q):
    z=t[_]
    ans=0
    for i in range(32):
        ans+=(check[i][(z>>i)&1]*(2**i))
        #print(ans)
    print(ans)
0