結果

問題 No.1245 ANDORゲーム(calc)
ユーザー tanon710tanon710
提出日時 2020-10-02 22:30:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 100,600 KB
最終ジャッジ日時 2024-07-17 22:03:00
合計ジャッジ時間 6,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,740 KB
testcase_01 AC 37 ms
52,936 KB
testcase_02 AC 38 ms
52,316 KB
testcase_03 AC 37 ms
54,024 KB
testcase_04 AC 36 ms
53,936 KB
testcase_05 AC 37 ms
53,468 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 69 ms
71,960 KB
testcase_08 AC 61 ms
69,828 KB
testcase_09 AC 68 ms
72,024 KB
testcase_10 AC 69 ms
71,888 KB
testcase_11 AC 272 ms
95,760 KB
testcase_12 AC 270 ms
96,000 KB
testcase_13 AC 270 ms
96,308 KB
testcase_14 AC 274 ms
95,872 KB
testcase_15 AC 271 ms
96,436 KB
testcase_16 AC 269 ms
96,364 KB
testcase_17 AC 251 ms
97,316 KB
testcase_18 AC 246 ms
97,180 KB
testcase_19 AC 249 ms
97,064 KB
testcase_20 AC 257 ms
96,488 KB
testcase_21 AC 254 ms
97,592 KB
testcase_22 AC 248 ms
97,208 KB
testcase_23 AC 258 ms
96,812 KB
testcase_24 AC 250 ms
96,384 KB
testcase_25 AC 186 ms
100,304 KB
testcase_26 AC 195 ms
100,600 KB
testcase_27 AC 229 ms
99,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))
s=input()
t=list(map(int,input().split()))
l=max(max(a),max(t)).bit_length()
points=[[0]*2 for _ in range(l)]
for i in range(l-1,-1,-1):
    k=2**i
    tmp1=0
    tmp2=1
    for j in range(n):
        if s[j]=='0':
            #bit on
            if a[j]&k:
                continue
            #bit off
            else:
                if tmp1==1:
                    tmp1=0
                    points[i][0]+=k
                if tmp2==1:
                    tmp2=0
                    points[i][1]+=k
        elif s[j]=='1':
            #bit on
            if a[j]&k:
                if tmp1==0:
                    tmp1=1
                    points[i][0]+=k
                if tmp2==0:
                    tmp2=1
                    points[i][1]+=k
            #bit off
            else:
                continue
for val in t:
    tmp=0
    for i in range(l-1,-1,-1):
        #bit on
        if val&(2**i):
            tmp+=points[i][1]
        #bit off
        else:
            tmp+=points[i][0]
    print(tmp)
0