結果

問題 No.1958 Bit Game
ユーザー pitPpitP
提出日時 2022-05-28 12:56:27
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,089 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 144,420 KB
最終ジャッジ日時 2024-09-20 21:44:19
合計ジャッジ時間 46,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,991 ms
144,312 KB
testcase_06 TLE -
testcase_07 AC 1,959 ms
144,072 KB
testcase_08 AC 1,968 ms
144,160 KB
testcase_09 AC 1,982 ms
144,420 KB
testcase_10 AC 725 ms
89,856 KB
testcase_11 AC 1,060 ms
106,624 KB
testcase_12 AC 906 ms
113,968 KB
testcase_13 AC 1,402 ms
107,104 KB
testcase_14 AC 1,323 ms
105,344 KB
testcase_15 AC 422 ms
110,336 KB
testcase_16 AC 255 ms
104,252 KB
testcase_17 AC 1,652 ms
114,560 KB
testcase_18 AC 1,284 ms
114,944 KB
testcase_19 AC 481 ms
111,232 KB
testcase_20 AC 1,915 ms
103,964 KB
testcase_21 AC 711 ms
114,944 KB
testcase_22 AC 1,168 ms
90,112 KB
testcase_23 AC 451 ms
102,656 KB
testcase_24 AC 1,852 ms
121,520 KB
testcase_25 AC 665 ms
105,472 KB
testcase_26 AC 1,633 ms
108,588 KB
testcase_27 AC 324 ms
107,008 KB
testcase_28 AC 1,830 ms
108,304 KB
testcase_29 AC 1,045 ms
99,456 KB
testcase_30 AC 39 ms
52,224 KB
testcase_31 AC 42 ms
57,984 KB
testcase_32 AC 83 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dot(A1,A2):
    # n:行列のサイズ
    l = len(A1)
    m = len(A1[0])
    m1 = len(A2)
    n = len(A2[0])
    if m != m1:
        print("CANNOT CALUCULATE!!")
        return
    A = [[0]*n for _ in range(l)]
    for i in range(l):
        for j in range(n):
            for k in range(m):
                A[i][j] += A1[i][k]*A2[k][j]
                A[i][j] %= mod
    return A

mod = 998244353
n,x,y = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

cnta = [0] * 19
cntb = [0] * 19

for num in a:
    digit = 0
    while num:
        res = num%2
        cnta[digit] += res
        num //= 2
        digit += 1
    
for num in b:
    digit = 0
    while num:
        res = num%2
        cntb[digit] += res
        num //= 2
        digit += 1

ans = 0
for i in range(19):
    a1 = [[x-cnta[i],0],[cnta[i],x]] 
    b1 = [[y,y-cntb[i]],[0,cntb[i]]]
    A = [[1,0],[0,1]]
    A = dot(a1,A) 
    A = dot(b1,A) 
    B = [[1,0],[0,1]]
    for j in range(n):
        B = dot(A,B)
    ans += pow(2,i,mod) * B[1][0]
    ans %= mod

print(ans)
0