結果

問題 No.1245 ANDORゲーム(calc)
ユーザー H20H20
提出日時 2022-07-13 14:05:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 1,041 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,256 KB
最終ジャッジ日時 2024-06-24 17:13:24
合計ジャッジ時間 15,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 116 ms
76,848 KB
testcase_08 AC 104 ms
76,732 KB
testcase_09 AC 114 ms
77,212 KB
testcase_10 AC 114 ms
77,132 KB
testcase_11 AC 735 ms
97,092 KB
testcase_12 AC 710 ms
97,096 KB
testcase_13 AC 702 ms
96,860 KB
testcase_14 AC 730 ms
97,080 KB
testcase_15 AC 711 ms
97,052 KB
testcase_16 AC 714 ms
97,068 KB
testcase_17 AC 674 ms
96,768 KB
testcase_18 AC 668 ms
99,256 KB
testcase_19 AC 669 ms
96,736 KB
testcase_20 AC 688 ms
96,604 KB
testcase_21 AC 672 ms
96,636 KB
testcase_22 AC 678 ms
96,716 KB
testcase_23 AC 678 ms
97,156 KB
testcase_24 AC 673 ms
97,420 KB
testcase_25 AC 534 ms
98,816 KB
testcase_26 AC 541 ms
98,432 KB
testcase_27 AC 651 ms
99,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
A = list(map(int,input().split()))
S = list(input())
T = list(map(int,input().split()))
ZEROSUM = [0]*40
ONESUM = [0]*40
zero = [0]*40
one = [1]*40
for i in range(N):
    s = int(S[i])
    a = A[i]
    ab = list(format(a, 'b').zfill(40))[::-1]
    for j in range(40):
        ab[j] = int(ab[j])


    for j in range(40):
        if s==0:
            if zero[j]==1 and ab[j]==0:
                ZEROSUM[j]+=pow(2,j)
            if one[j]==1 and ab[j]==0:
                ONESUM[j]+=pow(2,j)
            zero[j] = zero[j]&ab[j]
            one[j] = one[j]&ab[j]
        else:
            if zero[j]==0 and ab[j]==1:
                ZEROSUM[j]+=pow(2,j)
            if one[j]==0 and ab[j]==1:
                ONESUM[j]+=pow(2,j)
            zero[j] = zero[j]|ab[j]
            one[j] = one[j]|ab[j]


for t in T:
    B = list(format(t, 'b').zfill(40))[::-1]
    ans = 0
    for i,b in enumerate(B):
        if B[i]=='0':
            ans+=ZEROSUM[i]        
        else:
            ans+=ONESUM[i]
    print(ans)
0