結果

問題 No.1245 ANDORゲーム(calc)
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-24 17:43:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 100,500 KB
最終ジャッジ日時 2024-09-24 18:33:32
合計ジャッジ時間 7,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,320 KB
testcase_01 AC 34 ms
52,760 KB
testcase_02 AC 35 ms
53,072 KB
testcase_03 AC 35 ms
53,628 KB
testcase_04 AC 35 ms
52,336 KB
testcase_05 AC 34 ms
52,428 KB
testcase_06 AC 32 ms
52,416 KB
testcase_07 AC 52 ms
69,060 KB
testcase_08 AC 52 ms
66,840 KB
testcase_09 AC 56 ms
67,620 KB
testcase_10 AC 55 ms
68,828 KB
testcase_11 AC 179 ms
95,868 KB
testcase_12 AC 181 ms
96,360 KB
testcase_13 AC 179 ms
96,436 KB
testcase_14 AC 182 ms
96,604 KB
testcase_15 AC 183 ms
96,584 KB
testcase_16 AC 190 ms
96,348 KB
testcase_17 AC 179 ms
97,816 KB
testcase_18 AC 180 ms
97,712 KB
testcase_19 AC 180 ms
96,964 KB
testcase_20 AC 180 ms
97,040 KB
testcase_21 AC 177 ms
97,284 KB
testcase_22 AC 179 ms
97,376 KB
testcase_23 AC 181 ms
97,248 KB
testcase_24 AC 178 ms
96,756 KB
testcase_25 AC 140 ms
100,328 KB
testcase_26 AC 152 ms
100,500 KB
testcase_27 AC 174 ms
99,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))
s=input()
tary=list(map(int,input().split()))
now1=2**30-1
now0=0
ary1=[0]*30
ary0=[0]*30
for ai,si in zip(a,list(s)):
  pre1=now1
  pre0=now0
  if si=='0':
    now1&=ai
    now0&=ai
  else:
    now1|=ai
    now0|=ai
  for i in range(30):
    bit=1<<i
    ary0[i]+=abs((now0&bit)-(pre0&bit))
    ary1[i]+=abs((now1&bit)-(pre1&bit))
for t in tary:
  tmp=0
  for i in range(30):
    if (t>>i)&1:
      tmp+=ary1[i]
    else:
      tmp+=ary0[i]
  print(tmp)
0