結果

問題 No.1245 ANDORゲーム(calc)
ユーザー titiatitia
提出日時 2020-10-03 01:20:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 991 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,888 KB
最終ジャッジ日時 2024-07-18 02:32:00
合計ジャッジ時間 33,028 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 70 ms
11,136 KB
testcase_08 AC 40 ms
10,880 KB
testcase_09 AC 64 ms
11,136 KB
testcase_10 AC 74 ms
11,136 KB
testcase_11 AC 1,993 ms
26,888 KB
testcase_12 AC 1,914 ms
26,764 KB
testcase_13 AC 1,983 ms
26,868 KB
testcase_14 AC 1,921 ms
26,672 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,816 ms
26,264 KB
testcase_18 AC 1,779 ms
25,948 KB
testcase_19 AC 1,771 ms
26,308 KB
testcase_20 AC 1,796 ms
26,348 KB
testcase_21 AC 1,814 ms
26,188 KB
testcase_22 AC 1,845 ms
26,252 KB
testcase_23 AC 1,729 ms
26,708 KB
testcase_24 AC 1,577 ms
26,416 KB
testcase_25 AC 1,063 ms
22,796 KB
testcase_26 AC 1,575 ms
22,808 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
A=list(map(int,input().split()))
S=input().strip()
T=list(map(int,input().split()))

X=[-1]*31
X2=[-1]*31
score=0

for i in range(N):
    a=A[i]
    s=int(S[i])
    for j in range(31):
        if a & (1<<j) == 0:
            if s==0:
                if X[j]==-1:
                    X[j]=0
                    X2[j]=0
                elif X2[j]==1:
                    X2[j]=0
                    score+=1<<j
        else:
            if s==1:
                if X[j]==-1:
                    X[j]=1
                    X2[j]=1
                elif X2[j]==0:
                    X2[j]=1
                    score+=1<<j
    #print(X)

for t in T:
    score2=0
    for j in range(31):
        if X[j]==0:
            if t & (1<<j) !=0:
                score2+=1<<j
        elif X[j]==1:
            if t & (1<<j) ==0:
                score2+=1<<j

    print(score+score2)
            
                
            
         
0