結果

問題 No.1245 ANDORゲーム(calc)
ユーザー ayaoniayaoni
提出日時 2020-12-11 09:25:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 1,250 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 101,960 KB
最終ジャッジ日時 2024-09-19 21:12:00
合計ジャッジ時間 7,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,904 KB
testcase_01 AC 34 ms
53,612 KB
testcase_02 AC 33 ms
53,608 KB
testcase_03 AC 34 ms
54,272 KB
testcase_04 AC 33 ms
53,772 KB
testcase_05 AC 35 ms
53,964 KB
testcase_06 AC 35 ms
52,660 KB
testcase_07 AC 67 ms
76,544 KB
testcase_08 AC 55 ms
69,964 KB
testcase_09 AC 69 ms
76,712 KB
testcase_10 AC 61 ms
73,936 KB
testcase_11 AC 231 ms
96,836 KB
testcase_12 AC 232 ms
97,404 KB
testcase_13 AC 219 ms
97,740 KB
testcase_14 AC 231 ms
98,020 KB
testcase_15 AC 221 ms
98,076 KB
testcase_16 AC 217 ms
98,020 KB
testcase_17 AC 230 ms
98,264 KB
testcase_18 AC 209 ms
98,820 KB
testcase_19 AC 213 ms
98,184 KB
testcase_20 AC 220 ms
97,920 KB
testcase_21 AC 215 ms
99,120 KB
testcase_22 AC 213 ms
99,600 KB
testcase_23 AC 228 ms
97,896 KB
testcase_24 AC 222 ms
98,284 KB
testcase_25 AC 153 ms
101,556 KB
testcase_26 AC 168 ms
101,960 KB
testcase_27 AC 197 ms
100,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,Q = MI()
A = LI()
S = S()
T = LI()

zero_start = []
one_start = []
for i in range(30):
    z,o = 0,1
    score_zero,score_one = 0,0
    for j in range(N):
        a = (A[j]>>i) & 1
        s = S[j]
        if S[j] == '0':
            if z != z & a:
                score_zero += 1
            if o != o & a:
                score_one += 1
            z = z & a
            o = o & a
        else:
            if z != z | a:
                score_zero += 1
            if o != o | a:
                score_one += 1
            z = z | a
            o = o | a
    zero_start.append(score_zero<<i)
    one_start.append(score_one<<i)

for t in T:
    ans = 0
    for i in range(30):
        if (t>>i) & 1:
            ans += one_start[i]
        else:
            ans += zero_start[i]
    print(ans)
0