結果

問題 No.1245 ANDORゲーム(calc)
ユーザー rlangevinrlangevin
提出日時 2023-03-22 08:58:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 98,972 KB
最終ジャッジ日時 2024-09-18 14:44:40
合計ジャッジ時間 8,303 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,212 KB
testcase_01 AC 34 ms
52,340 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 39 ms
52,348 KB
testcase_04 AC 34 ms
52,892 KB
testcase_05 AC 33 ms
52,584 KB
testcase_06 AC 32 ms
53,008 KB
testcase_07 AC 57 ms
69,656 KB
testcase_08 AC 50 ms
65,760 KB
testcase_09 AC 59 ms
69,704 KB
testcase_10 AC 55 ms
69,776 KB
testcase_11 AC 249 ms
98,196 KB
testcase_12 AC 254 ms
98,132 KB
testcase_13 AC 247 ms
98,016 KB
testcase_14 AC 255 ms
98,336 KB
testcase_15 AC 251 ms
97,868 KB
testcase_16 AC 257 ms
98,328 KB
testcase_17 AC 240 ms
97,972 KB
testcase_18 AC 226 ms
97,912 KB
testcase_19 AC 220 ms
97,932 KB
testcase_20 AC 233 ms
98,204 KB
testcase_21 AC 243 ms
97,980 KB
testcase_22 AC 251 ms
98,040 KB
testcase_23 AC 260 ms
97,776 KB
testcase_24 AC 261 ms
98,024 KB
testcase_25 AC 178 ms
98,668 KB
testcase_26 AC 188 ms
98,972 KB
testcase_27 AC 215 ms
97,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
S = list(input())
S = list(map(int, S))
T = list(map(int, input().split()))

M = 35
L = [[0] * 2 for i in range(M)]
for i in range(M):
    for j in range(2):
        now = j
        for n in range(N):
            a = (A[n] >> i) & 1
            if S[n]:
                nex = now | a
            else:
                nex = now & a
            L[i][j] += nex ^ now
            now = nex

for t in T:
    ans = 0
    for i in range(M):
        ans += (1 << i) * L[i][(t >> i) & 1]
            
    print(ans)
0