結果

問題 No.1245 ANDORゲーム(calc)
ユーザー uni_pythonuni_python
提出日時 2020-10-03 12:56:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 1,201 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 100,820 KB
最終ジャッジ日時 2024-07-18 04:18:56
合計ジャッジ時間 8,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,668 KB
testcase_01 AC 35 ms
53,100 KB
testcase_02 AC 35 ms
52,956 KB
testcase_03 AC 33 ms
53,276 KB
testcase_04 AC 33 ms
53,028 KB
testcase_05 AC 33 ms
52,820 KB
testcase_06 AC 33 ms
52,872 KB
testcase_07 AC 55 ms
69,840 KB
testcase_08 AC 52 ms
70,324 KB
testcase_09 AC 62 ms
76,256 KB
testcase_10 AC 55 ms
69,764 KB
testcase_11 AC 470 ms
95,868 KB
testcase_12 AC 398 ms
95,952 KB
testcase_13 AC 409 ms
96,184 KB
testcase_14 AC 368 ms
96,080 KB
testcase_15 AC 368 ms
95,884 KB
testcase_16 AC 395 ms
95,912 KB
testcase_17 AC 341 ms
97,220 KB
testcase_18 AC 301 ms
97,040 KB
testcase_19 AC 295 ms
96,696 KB
testcase_20 AC 359 ms
96,104 KB
testcase_21 AC 318 ms
97,656 KB
testcase_22 AC 295 ms
97,300 KB
testcase_23 AC 365 ms
96,492 KB
testcase_24 AC 377 ms
96,216 KB
testcase_25 AC 202 ms
100,820 KB
testcase_26 AC 235 ms
100,264 KB
testcase_27 AC 296 ms
99,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N,Q=MI()
    A=LI()
    S=input()
    T=LI()
    
    M=60
    
    # 各桁について,元が0,1の時のscoreを求めておく
    zero=[0]*M
    one =[0]*M
    
    def calc(st):
        for i in range(M):#右からi桁目
            now=st
            score=0
            diff=pow(2,i)
            for j,a in enumerate(A):
                aa=(a>>i)&1
                
                # print(a,j)
                if S[j]=="0":
                    nxt=now & aa
                else:
                    nxt=now | aa
                    
                if now!=nxt:
                    score+=diff
                now=nxt
            if st==0:
                zero[i]=score
            else:
                one[i]=score
                
    calc(0)
    calc(1)
    for t in T:
        score=0
        for i in range(M):
            aa=(t>>i)&1
            if aa==0:
                score+=zero[i]
            else:
                score+=one[i]
                
        print(score)
            
        
        


            


main()
0