結果

問題 No.1245 ANDORゲーム(calc)
ユーザー tamatotamato
提出日時 2020-10-02 22:41:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 1,332 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,812 KB
実行使用メモリ 99,940 KB
最終ジャッジ日時 2024-07-17 22:25:38
合計ジャッジ時間 6,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,928 KB
testcase_01 AC 35 ms
52,376 KB
testcase_02 AC 36 ms
52,836 KB
testcase_03 AC 35 ms
53,700 KB
testcase_04 AC 35 ms
52,724 KB
testcase_05 AC 33 ms
54,072 KB
testcase_06 AC 33 ms
53,336 KB
testcase_07 AC 79 ms
76,700 KB
testcase_08 AC 75 ms
76,828 KB
testcase_09 AC 80 ms
76,700 KB
testcase_10 AC 87 ms
76,768 KB
testcase_11 AC 271 ms
94,096 KB
testcase_12 AC 282 ms
94,408 KB
testcase_13 AC 314 ms
94,252 KB
testcase_14 AC 272 ms
94,320 KB
testcase_15 AC 292 ms
94,412 KB
testcase_16 AC 272 ms
94,280 KB
testcase_17 AC 253 ms
96,012 KB
testcase_18 AC 237 ms
95,760 KB
testcase_19 AC 242 ms
95,016 KB
testcase_20 AC 274 ms
94,556 KB
testcase_21 AC 250 ms
95,700 KB
testcase_22 AC 246 ms
95,776 KB
testcase_23 AC 274 ms
95,132 KB
testcase_24 AC 253 ms
94,924 KB
testcase_25 AC 166 ms
99,668 KB
testcase_26 AC 170 ms
99,940 KB
testcase_27 AC 242 ms
97,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, Q = map(int, input().split())
    A = list(map(int, input().split()))
    S = input().rstrip('\n')
    T = list(map(int, input().split()))

    zero = [0] * 31
    one = [0] * 31
    # zero start
    cur = [0] * 31
    for i in range(N):
        a = A[i]
        for j in range(31):
            aj = a >> j & 1
            if S[i] == "0":
                if cur[j] == 1 and aj == 0:
                    zero[j] += 1 << j
                cur[j] = cur[j] & aj
            else:
                if cur[j] == 0 and aj == 1:
                    zero[j] += 1 << j
                cur[j] = cur[j] | aj
    # one start
    cur = [1] * 31
    for i in range(N):
        a = A[i]
        for j in range(31):
            aj = a >> j & 1
            if S[i] == "0":
                if cur[j] == 1 and aj == 0:
                    one[j] += 1 << j
                cur[j] = cur[j] & aj
            else:
                if cur[j] == 0 and aj == 1:
                    one[j] += 1 << j
                cur[j] = cur[j] | aj

    for t in T:
        ans = 0
        for j in range(31):
            if t >> j & 1:
                ans += one[j]
            else:
                ans += zero[j]
        print(ans)


if __name__ == '__main__':
    main()
0