結果

問題 No.1245 ANDORゲーム(calc)
ユーザー yuusanlondonyuusanlondon
提出日時 2020-10-02 22:06:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 100,924 KB
最終ジャッジ日時 2024-07-17 13:30:30
合計ジャッジ時間 8,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,556 KB
testcase_01 AC 37 ms
52,592 KB
testcase_02 AC 38 ms
53,164 KB
testcase_03 AC 38 ms
52,800 KB
testcase_04 AC 37 ms
52,604 KB
testcase_05 AC 37 ms
52,728 KB
testcase_06 AC 36 ms
52,064 KB
testcase_07 AC 85 ms
76,884 KB
testcase_08 AC 69 ms
75,228 KB
testcase_09 AC 86 ms
76,780 KB
testcase_10 AC 82 ms
76,760 KB
testcase_11 AC 402 ms
95,916 KB
testcase_12 AC 381 ms
96,264 KB
testcase_13 AC 373 ms
96,064 KB
testcase_14 AC 399 ms
96,104 KB
testcase_15 AC 374 ms
96,344 KB
testcase_16 AC 385 ms
95,964 KB
testcase_17 AC 347 ms
97,460 KB
testcase_18 AC 322 ms
97,552 KB
testcase_19 AC 330 ms
96,984 KB
testcase_20 AC 346 ms
96,292 KB
testcase_21 AC 346 ms
97,360 KB
testcase_22 AC 335 ms
97,768 KB
testcase_23 AC 357 ms
96,292 KB
testcase_24 AC 342 ms
96,184 KB
testcase_25 AC 240 ms
100,856 KB
testcase_26 AC 244 ms
100,924 KB
testcase_27 AC 292 ms
99,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))
s=input()
t=list(map(int,input().split()))
score=[]
for i in range(40):
  score.append([])
  score[-1].append(0)
  score[-1].append(0)
for i in range(40):
  k=1<<i
  current=0
  for j in range(n):
    if current==0 and s[j]=='1' and k&a[j]:
      score[i][0]+=1
      current=1
    if current==1 and s[j]=='0' and not (k&a[j]):
      score[i][0]+=1
      current=0
  current=1
  for j in range(n):
    if current==0 and s[j]=='1' and k&a[j]:
      score[i][1]+=1
      current=1
    if current==1 and s[j]=='0' and not (k&a[j]):
      score[i][1]+=1
      current=0
for i in range(q):
  ans=0
  for j in range(40):
    if t[i]&(1<<j):
      ans+=(1<<j)*score[j][1]
    else:
      ans+=(1<<j)*score[j][0]
  print(ans)
0