結果

問題 No.1245 ANDORゲーム(calc)
ユーザー mkawa2mkawa2
提出日時 2020-10-03 09:28:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 97,256 KB
最終ジャッジ日時 2024-07-18 04:08:48
合計ジャッジ時間 6,668 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,660 KB
testcase_01 AC 44 ms
55,140 KB
testcase_02 AC 44 ms
55,696 KB
testcase_03 AC 40 ms
54,948 KB
testcase_04 AC 43 ms
56,184 KB
testcase_05 AC 41 ms
55,600 KB
testcase_06 AC 40 ms
55,068 KB
testcase_07 AC 77 ms
76,728 KB
testcase_08 AC 63 ms
72,084 KB
testcase_09 AC 79 ms
76,760 KB
testcase_10 AC 76 ms
76,924 KB
testcase_11 AC 284 ms
95,408 KB
testcase_12 AC 265 ms
95,396 KB
testcase_13 AC 258 ms
95,580 KB
testcase_14 AC 259 ms
95,404 KB
testcase_15 AC 256 ms
95,172 KB
testcase_16 AC 254 ms
95,556 KB
testcase_17 AC 229 ms
95,396 KB
testcase_18 AC 220 ms
95,552 KB
testcase_19 AC 236 ms
95,560 KB
testcase_20 AC 235 ms
95,368 KB
testcase_21 AC 228 ms
95,372 KB
testcase_22 AC 233 ms
95,228 KB
testcase_23 AC 255 ms
95,776 KB
testcase_24 AC 235 ms
95,124 KB
testcase_25 AC 147 ms
97,212 KB
testcase_26 AC 171 ms
97,256 KB
testcase_27 AC 219 ms
95,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

# input=sys.stdin.buffer.readline
input=sys.stdin.readline

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(input())
def MI(): return map(int, input().split())
def MI1(): return map(int1, input().split())
def LI(): return list(map(int, input().split()))
def LI1(): return list(map(int1, input().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return input()[:-1]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

n,q=MI()
aa=LI()
ss=SI()
tt=LI()
start=[-1]*30
base=0
for k in range(30):
    pre = -1
    for s, a in zip(ss, aa):
        d=a>>k&1
        if pre!=-1:
            if s=="0":cur=pre&d
            else:cur=pre|d
            base+=(pre^cur)<<k
            pre=cur
        if d==int(s) and start[k]==-1:
            start[k]=d
            pre=d
# print(base,start)

for t in tt:
    ans=base
    for k in range(30):
        if start[k]==-1:continue
        ans+=((t>>k&1)^start[k])<<k
    print(ans)
0