結果

問題 No.1245 ANDORゲーム(calc)
ユーザー mkawa2mkawa2
提出日時 2022-03-05 02:53:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 97,536 KB
最終ジャッジ日時 2024-07-19 02:02:17
合計ジャッジ時間 9,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,400 KB
testcase_01 AC 48 ms
54,656 KB
testcase_02 AC 49 ms
54,528 KB
testcase_03 AC 49 ms
54,364 KB
testcase_04 AC 49 ms
54,400 KB
testcase_05 AC 48 ms
54,528 KB
testcase_06 AC 49 ms
54,656 KB
testcase_07 AC 99 ms
77,056 KB
testcase_08 AC 78 ms
71,168 KB
testcase_09 AC 97 ms
77,056 KB
testcase_10 AC 95 ms
76,800 KB
testcase_11 AC 308 ms
95,488 KB
testcase_12 AC 305 ms
95,488 KB
testcase_13 AC 302 ms
95,332 KB
testcase_14 AC 301 ms
95,488 KB
testcase_15 AC 294 ms
95,232 KB
testcase_16 AC 300 ms
95,872 KB
testcase_17 AC 266 ms
95,360 KB
testcase_18 AC 261 ms
95,232 KB
testcase_19 AC 271 ms
95,488 KB
testcase_20 AC 278 ms
95,104 KB
testcase_21 AC 262 ms
95,744 KB
testcase_22 AC 274 ms
95,232 KB
testcase_23 AC 280 ms
95,872 KB
testcase_24 AC 268 ms
94,976 KB
testcase_25 AC 169 ms
97,536 KB
testcase_26 AC 186 ms
97,152 KB
testcase_27 AC 249 ms
95,616 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