結果

問題 No.1245 ANDORゲーム(calc)
ユーザー naniwazunaniwazu
提出日時 2020-10-02 22:20:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 97,064 KB
最終ジャッジ日時 2024-07-17 21:43:09
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,608 KB
testcase_01 AC 32 ms
54,252 KB
testcase_02 AC 35 ms
54,304 KB
testcase_03 AC 33 ms
52,604 KB
testcase_04 AC 31 ms
52,828 KB
testcase_05 AC 31 ms
52,820 KB
testcase_06 AC 33 ms
53,044 KB
testcase_07 AC 83 ms
76,688 KB
testcase_08 AC 65 ms
74,780 KB
testcase_09 AC 80 ms
76,680 KB
testcase_10 AC 80 ms
76,768 KB
testcase_11 AC 288 ms
96,088 KB
testcase_12 AC 290 ms
96,436 KB
testcase_13 AC 280 ms
96,216 KB
testcase_14 AC 285 ms
96,352 KB
testcase_15 AC 278 ms
96,616 KB
testcase_16 AC 285 ms
96,140 KB
testcase_17 AC 260 ms
96,132 KB
testcase_18 AC 247 ms
95,888 KB
testcase_19 AC 239 ms
95,964 KB
testcase_20 AC 276 ms
96,096 KB
testcase_21 AC 253 ms
96,440 KB
testcase_22 AC 247 ms
96,484 KB
testcase_23 AC 266 ms
96,208 KB
testcase_24 AC 268 ms
96,564 KB
testcase_25 AC 174 ms
96,972 KB
testcase_26 AC 169 ms
97,064 KB
testcase_27 AC 203 ms
95,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
A = list(map(int,input().split()))
S = list(map(int,input()))
t = list(map(int,input().split()))
score = [[0,0] for _ in range(32)]
for i in range(32):
    bit = 0
    s = 0
    for j in range(N):
        if S[j]:
            if bit or (A[j] >> i & 1):
                s += abs(bit-1)*(1 << i)
                bit = 1
            else:
                s += abs(bit)*(1 << i)
                bit = 0
        else:
            if bit and (A[j] >> i & 1):
                s += abs(bit-1)*(1 << i)
                bit = 1
            else:
                s += abs(bit)*(1 << i)
                bit = 0
    score[i][0] = s
    bit = 1
    s = 0
    for j in range(N):
        if S[j]:
            if bit or (A[j] >> i & 1):
                s += abs(bit-1)*(1 << i)
                bit = 1
            else:
                s += abs(bit)*(1 << i)
                bit = 0
        else:
            if bit and (A[j] >> i & 1):
                s += abs(bit-1)*(1 << i)
                bit = 1
            else:
                s += abs(bit)*(1 << i)
                bit = 0
    score[i][1] = s
for ti in t:
    s = 0
    for i in range(32):
        if ti >> i & 1:
            s += score[i][1]
        else:
            s += score[i][0]
    print(s)
0