結果

問題 No.1245 ANDORゲーム(calc)
ユーザー Eki1009Eki1009
提出日時 2020-10-02 22:21:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 96,916 KB
最終ジャッジ日時 2024-07-17 21:44:17
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,216 KB
testcase_01 AC 35 ms
53,684 KB
testcase_02 AC 36 ms
52,732 KB
testcase_03 AC 39 ms
53,412 KB
testcase_04 AC 34 ms
53,172 KB
testcase_05 AC 34 ms
52,900 KB
testcase_06 AC 34 ms
53,480 KB
testcase_07 AC 56 ms
69,224 KB
testcase_08 AC 50 ms
65,740 KB
testcase_09 AC 59 ms
68,312 KB
testcase_10 AC 58 ms
69,172 KB
testcase_11 AC 207 ms
92,408 KB
testcase_12 AC 215 ms
92,776 KB
testcase_13 AC 216 ms
92,628 KB
testcase_14 AC 211 ms
92,896 KB
testcase_15 AC 222 ms
92,692 KB
testcase_16 AC 229 ms
92,360 KB
testcase_17 AC 200 ms
92,828 KB
testcase_18 AC 192 ms
92,816 KB
testcase_19 AC 185 ms
92,728 KB
testcase_20 AC 206 ms
92,608 KB
testcase_21 AC 192 ms
92,372 KB
testcase_22 AC 191 ms
92,856 KB
testcase_23 AC 213 ms
92,784 KB
testcase_24 AC 210 ms
92,404 KB
testcase_25 AC 149 ms
96,916 KB
testcase_26 AC 151 ms
94,184 KB
testcase_27 AC 172 ms
93,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
A = list(map(int, input().split()))
S = input()
U = 31
dp = [[0]*U for _ in range(2)]
for i in range(2):
    for j in range(U):
        now, temp = i, 0
        for k, a in enumerate(A):
            if S[k] == "0":
                nxt = now & (a>>j & 1)
                temp += now - nxt
                now = nxt
            else:
                nxt = now | (a>>j & 1)
                temp += nxt - now
                now = nxt
        dp[i][j] = temp
T = list(map(int, input().split()))
for t in T:
    ans = 0
    for j in range(U):
        ans += dp[t>>j & 1][j] << j
    print(ans)
0