結果

問題 No.1245 ANDORゲーム(calc)
ユーザー tktk_snsntktk_snsn
提出日時 2020-10-02 22:28:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 113,832 KB
最終ジャッジ日時 2024-07-17 21:59:04
合計ジャッジ時間 9,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,744 KB
testcase_01 AC 40 ms
52,532 KB
testcase_02 AC 40 ms
53,484 KB
testcase_03 AC 41 ms
53,008 KB
testcase_04 AC 39 ms
52,496 KB
testcase_05 AC 39 ms
52,968 KB
testcase_06 AC 42 ms
52,900 KB
testcase_07 AC 87 ms
76,516 KB
testcase_08 AC 68 ms
73,260 KB
testcase_09 AC 87 ms
76,500 KB
testcase_10 AC 84 ms
76,436 KB
testcase_11 AC 376 ms
101,540 KB
testcase_12 AC 365 ms
102,004 KB
testcase_13 AC 358 ms
100,260 KB
testcase_14 AC 377 ms
100,260 KB
testcase_15 AC 362 ms
100,572 KB
testcase_16 AC 358 ms
100,244 KB
testcase_17 AC 338 ms
100,140 KB
testcase_18 AC 324 ms
100,032 KB
testcase_19 AC 322 ms
100,156 KB
testcase_20 AC 342 ms
100,996 KB
testcase_21 AC 328 ms
101,236 KB
testcase_22 AC 324 ms
100,644 KB
testcase_23 AC 351 ms
99,332 KB
testcase_24 AC 356 ms
99,528 KB
testcase_25 AC 208 ms
113,832 KB
testcase_26 AC 254 ms
100,840 KB
testcase_27 AC 308 ms
101,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
A = list(map(int, input().split()))
S = input()
T = list(map(int, input().split()))

memo0 = []
memo1 = []

for i in range(32):
    vals = [(a >> i) & 1 for a in A]
    weight = 1 << i
    # i番目のbitが0のとき
    x = 0
    score = 0
    for s, v in zip(S, vals):
        if s == "0":
            xx = x & v
        else:
            xx = x | v
        if xx != x:
            score += weight
            x = xx
    memo0.append(score)

    # i番目のbitが1のとき
    x = 1
    score = 0
    for s, v in zip(S, vals):
        if s == "0":
            xx = x & v
        else:
            xx = x | v
        if xx != x:
            score += weight
            x = xx
    memo1.append(score)

for t in T:
    ans = 0
    for i in range(32):
        if (t >> i) & 1:
            ans += memo1[i]
        else:
            ans += memo0[i]
    print(ans)
0