結果

問題 No.1245 ANDORゲーム(calc)
ユーザー roarisroaris
提出日時 2022-11-29 19:04:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 94,080 KB
最終ジャッジ日時 2024-10-07 06:45:51
合計ジャッジ時間 8,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 38 ms
52,508 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 73 ms
71,808 KB
testcase_08 AC 61 ms
67,200 KB
testcase_09 AC 76 ms
72,732 KB
testcase_10 AC 68 ms
69,632 KB
testcase_11 AC 316 ms
91,720 KB
testcase_12 AC 318 ms
91,960 KB
testcase_13 AC 298 ms
91,812 KB
testcase_14 AC 318 ms
92,116 KB
testcase_15 AC 301 ms
92,124 KB
testcase_16 AC 294 ms
91,848 KB
testcase_17 AC 277 ms
92,192 KB
testcase_18 AC 275 ms
92,052 KB
testcase_19 AC 268 ms
91,984 KB
testcase_20 AC 288 ms
92,068 KB
testcase_21 AC 280 ms
91,616 KB
testcase_22 AC 269 ms
92,724 KB
testcase_23 AC 300 ms
91,780 KB
testcase_24 AC 297 ms
91,964 KB
testcase_25 AC 210 ms
94,080 KB
testcase_26 AC 215 ms
93,568 KB
testcase_27 AC 258 ms
92,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, Q = map(int, input().split())
A = list(map(int, input().split()))
S = input()[:-1]
add = [[0]*2 for _ in range(35)]

for i in range(35):
    for j in range(2):
        now = j
        
        for k in range(N):
            if S[k]=='0':
                nex = now&((A[k]>>i)&1)
            else:
                nex = now|((A[k]>>i)&1)
            
            add[i][j] += (1<<i)*abs(now-nex)
            now = nex

t = list(map(int, input().split()))

for ti in t:
    ans = 0
    
    for i in range(35):
        if (ti>>i)&1:
            ans += add[i][1]
        else:
            ans += add[i][0]
    
    print(ans)
0