結果

問題 No.2783 4-33 Easy
ユーザー rlangevinrlangevin
提出日時 2024-06-14 21:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 1,016 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,572 KB
最終ジャッジ日時 2024-06-14 21:45:23
合計ジャッジ時間 6,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
65,664 KB
testcase_01 AC 63 ms
68,224 KB
testcase_02 AC 76 ms
71,808 KB
testcase_03 AC 68 ms
70,528 KB
testcase_04 AC 159 ms
76,908 KB
testcase_05 AC 201 ms
77,328 KB
testcase_06 AC 167 ms
76,928 KB
testcase_07 AC 167 ms
77,124 KB
testcase_08 AC 176 ms
77,572 KB
testcase_09 AC 173 ms
76,812 KB
testcase_10 AC 176 ms
76,660 KB
testcase_11 AC 183 ms
77,016 KB
testcase_12 AC 183 ms
76,800 KB
testcase_13 AC 176 ms
77,016 KB
testcase_14 AC 171 ms
77,024 KB
testcase_15 AC 188 ms
76,848 KB
testcase_16 AC 199 ms
76,800 KB
testcase_17 AC 203 ms
76,832 KB
testcase_18 AC 189 ms
76,832 KB
testcase_19 AC 176 ms
77,120 KB
testcase_20 AC 169 ms
76,800 KB
testcase_21 AC 180 ms
76,864 KB
testcase_22 AC 201 ms
76,900 KB
testcase_23 AC 178 ms
76,672 KB
testcase_24 AC 179 ms
76,868 KB
testcase_25 AC 195 ms
76,956 KB
testcase_26 AC 180 ms
76,772 KB
testcase_27 AC 185 ms
76,708 KB
testcase_28 AC 175 ms
76,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = input().split()
D = []
AA, BB = [], []
for a, b in zip(A, B):
    if b[-1] == "X":
        if len(b) == 1:
            D.append((a, 0))
        # else:
        #     b = int(b[:-1])
        #     if 
        #     D.append((a, ))
    else:
        AA.append(a)
        BB.append(int(b))
        
NA, NB, NC = 4, 33, 8
M = len(AA)
pre = [[[0] * (NB + 1) for _ in range(NA + 1)] for _ in range(NC + 1)]
pre[0][0][0] = 1
mod = 998244353
for i in range(M):
    dp = [[[0] * (NB + 1) for _ in range(NA + 1)] for _ in range(NC + 1)]
    aa, bb = AA[i], BB[i] 
    for a in range(NA + 1):
        for b in range(NB + 1):
            for c in range(NC + 1):
                dp[c][a][b] += pre[c][a][b]
                if a - aa >= 0 and b - bb >= 0 and c:
                    dp[c][a][b] += pre[c - 1][a - aa][b - bb]
                dp[c][a][b] %= mod
    pre, dp = dp, pre
    
ans = 0
for a, b in D:
    ans += pre[8][NA - a][NB - b]
    ans %= mod
    
print(ans)
0