結果

問題 No.1245 ANDORゲーム(calc)
ユーザー marroncastlemarroncastle
提出日時 2020-10-02 23:40:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 98,312 KB
最終ジャッジ日時 2024-07-18 00:19:26
合計ジャッジ時間 7,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,944 KB
testcase_01 AC 34 ms
53,544 KB
testcase_02 AC 34 ms
52,600 KB
testcase_03 AC 36 ms
53,496 KB
testcase_04 AC 37 ms
52,744 KB
testcase_05 AC 35 ms
53,140 KB
testcase_06 AC 35 ms
54,068 KB
testcase_07 AC 70 ms
74,600 KB
testcase_08 AC 53 ms
67,908 KB
testcase_09 AC 76 ms
74,348 KB
testcase_10 AC 71 ms
74,728 KB
testcase_11 AC 288 ms
97,596 KB
testcase_12 AC 287 ms
98,224 KB
testcase_13 AC 277 ms
97,504 KB
testcase_14 AC 284 ms
97,852 KB
testcase_15 AC 284 ms
97,836 KB
testcase_16 AC 274 ms
97,464 KB
testcase_17 AC 249 ms
97,588 KB
testcase_18 AC 243 ms
97,868 KB
testcase_19 AC 236 ms
97,876 KB
testcase_20 AC 259 ms
97,908 KB
testcase_21 AC 257 ms
97,892 KB
testcase_22 AC 246 ms
98,032 KB
testcase_23 AC 263 ms
97,584 KB
testcase_24 AC 265 ms
97,544 KB
testcase_25 AC 184 ms
96,956 KB
testcase_26 AC 202 ms
98,232 KB
testcase_27 AC 232 ms
98,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
S = input()
lis = [[0]*31 for _ in range(2)]
q = 1
for p in range(31):
  score = 0
  r = q
  for i in range(N):
    u = A[i]&(1<<p)
    if S[i]=='0':
      s = r&u
    else:
      s = r|u
    score += abs(s-r)
    r = s
  lis[1][p] = score
  score = 0
  r = 0
  for i in range(N):
    u = A[i]&(1<<p)
    if S[i]=='0':
      s = r&u
    else:
      s = r|u
    score += abs(s-r)
    r = s
  lis[0][p] = score
  q <<= 1
ans = [0]*Q
T = list(map(int, input().split()))
for i in range(Q):
  t = T[i]
  for p in range(31):
    if t&(1<<p):
      ans[i] += lis[1][p]
    else:
      ans[i] += lis[0][p]
print(*ans, sep='\n')
    
    
0