結果

問題 No.1245 ANDORゲーム(calc)
ユーザー AEnAEn
提出日時 2022-12-06 21:39:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 1,410 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 95,768 KB
最終ジャッジ日時 2024-10-13 09:29:50
合計ジャッジ時間 11,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
63,104 KB
testcase_01 AC 52 ms
63,104 KB
testcase_02 AC 51 ms
63,232 KB
testcase_03 AC 49 ms
62,976 KB
testcase_04 AC 50 ms
63,360 KB
testcase_05 AC 52 ms
62,848 KB
testcase_06 AC 50 ms
62,720 KB
testcase_07 AC 92 ms
77,568 KB
testcase_08 AC 88 ms
77,824 KB
testcase_09 AC 90 ms
77,824 KB
testcase_10 AC 90 ms
77,968 KB
testcase_11 AC 360 ms
93,680 KB
testcase_12 AC 351 ms
94,068 KB
testcase_13 AC 359 ms
94,032 KB
testcase_14 AC 359 ms
94,088 KB
testcase_15 AC 357 ms
94,004 KB
testcase_16 AC 351 ms
93,772 KB
testcase_17 AC 325 ms
94,168 KB
testcase_18 AC 318 ms
93,748 KB
testcase_19 AC 311 ms
93,776 KB
testcase_20 AC 326 ms
93,944 KB
testcase_21 AC 329 ms
93,788 KB
testcase_22 AC 320 ms
94,132 KB
testcase_23 AC 332 ms
94,100 KB
testcase_24 AC 339 ms
93,948 KB
testcase_25 AC 277 ms
95,476 KB
testcase_26 AC 306 ms
95,768 KB
testcase_27 AC 309 ms
94,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from re import I


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

bit = [1<<i for i in range(30)]
cal = [[0]*2 for _ in range(30)]
num = [[0,1] for _ in range(30)]
for i in range(len(S)):
    for j in range(30):
        for k in range(2):
            b1 = num[j][k]
            b2 = 1 if A[i]&bit[j] else 0
            if S[i]=='0':
                nex = b1&b2
                if nex!=b1:
                    cal[j][k] += bit[j]
                num[j][k] = nex
            else:
                nex = b1|b2
                if nex!=b1:
                    cal[j][k] += bit[j]
                num[j][k] = nex
for i in range(Q):
    score = 0
    for j in range(30):
        if t[i]&bit[j]:
            score += cal[j][1]
        else:
            score += cal[j][0]
    print(score)
0