結果

問題 No.2783 4-33 Easy
ユーザー anonymouslyanonymously
提出日時 2024-06-14 22:59:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 924 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-06-14 22:59:32
合計ジャッジ時間 7,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
16,384 KB
testcase_01 AC 152 ms
10,880 KB
testcase_02 AC 114 ms
11,136 KB
testcase_03 AC 82 ms
10,880 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
MOD = 998244353

N = int(input())
A = list(map(int, input().split()))
B = input().split()
X = []
Y = []
for i in range(N):
    if B[i].isdigit():
        Y.append((A[i], int(B[i])))
    elif B[i] == 'X':
        X.append((A[i], 0))

DP = [[[0 for b in range(34)] for a in range(5)] for i in range(9)]
DP[0][0][0] = 1
for u, d in Y:
    dp = deepcopy(DP)
    for i in range(len(DP)):
        for j in range(len(DP[i])):
            for k in range(len(DP[i][j])):
                if i >= 1 and j >= u and k >= d:
                    dp[i][j][k] = (DP[i][j][k]+DP[i-1][j-u][k-d]) % MOD
    DP = deepcopy(dp)
DP9 = [[0 for b in range(34)] for a in range(5)]
for u, d in X:
    dp9 = deepcopy(DP9)
    for j in range(len(DP9)):
        for k in range(len(DP9[j])):
            if j >= u and k >= d:
                dp9[j][k] = (DP9[j][k]+DP[8][j-u][k-d]) % MOD
    DP9 = deepcopy(dp9)
print(DP9[4][33])
0