結果

問題 No.1958 Bit Game
ユーザー 👑 KazunKazun
提出日時 2022-05-27 21:42:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 693 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 144,104 KB
最終ジャッジ日時 2024-09-20 15:38:23
合計ジャッジ時間 48,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 791 ms
89,660 KB
testcase_11 AC 1,144 ms
106,880 KB
testcase_12 AC 958 ms
112,240 KB
testcase_13 AC 1,556 ms
106,148 KB
testcase_14 AC 1,435 ms
105,856 KB
testcase_15 AC 412 ms
110,464 KB
testcase_16 AC 224 ms
104,192 KB
testcase_17 AC 1,787 ms
113,696 KB
testcase_18 AC 1,338 ms
114,304 KB
testcase_19 AC 486 ms
111,232 KB
testcase_20 TLE -
testcase_21 AC 643 ms
114,688 KB
testcase_22 AC 1,231 ms
89,728 KB
testcase_23 AC 437 ms
101,888 KB
testcase_24 AC 1,949 ms
119,552 KB
testcase_25 AC 681 ms
104,832 KB
testcase_26 AC 1,802 ms
108,672 KB
testcase_27 AC 304 ms
106,644 KB
testcase_28 AC 1,994 ms
107,272 KB
testcase_29 AC 1,103 ms
99,324 KB
testcase_30 AC 39 ms
52,608 KB
testcase_31 AC 35 ms
52,224 KB
testcase_32 AC 51 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N,X,Y,A,B):
    mu=max(max(A), max(B)).bit_length()

    Ans=0; Mod=998244353
    for d in range(mu):
        S=[0,0]; T=[0,0]

        for a in A:
            S[(a>>d)&1]+=1

        for b in B:
            T[(b>>d)&1]+=1

        DP=[1,0]
        for _ in range(N):
            E=DP; DP=[0,0]
            for r in [0,1]:
                for p in [0,1]:
                    for q in [0,1]:
                        h=S[p]*T[q]%Mod
                        DP[(r|p)&q]+=h*E[r]%Mod

            DP=[t%Mod for t in DP]
        Ans+=DP[1]*(1<<d)

    return Ans%Mod

N,X,Y=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
print(solve(N,X,Y,A,B))
0