結果

問題 No.2783 4-33 Easy
ユーザー vwxyzvwxyz
提出日時 2024-07-03 04:08:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,414 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-03 04:08:46
合計ジャッジ時間 29,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 71 ms
10,752 KB
testcase_02 AC 58 ms
10,752 KB
testcase_03 AC 45 ms
10,752 KB
testcase_04 AC 393 ms
10,752 KB
testcase_05 AC 1,414 ms
10,880 KB
testcase_06 AC 1,203 ms
10,624 KB
testcase_07 AC 1,244 ms
10,752 KB
testcase_08 AC 1,222 ms
10,752 KB
testcase_09 AC 1,197 ms
10,752 KB
testcase_10 AC 1,099 ms
10,752 KB
testcase_11 AC 1,175 ms
10,752 KB
testcase_12 AC 1,143 ms
10,880 KB
testcase_13 AC 1,108 ms
10,880 KB
testcase_14 AC 1,095 ms
10,752 KB
testcase_15 AC 1,106 ms
10,752 KB
testcase_16 AC 1,232 ms
10,752 KB
testcase_17 AC 1,087 ms
10,880 KB
testcase_18 AC 1,103 ms
10,752 KB
testcase_19 AC 1,122 ms
10,752 KB
testcase_20 AC 1,399 ms
10,880 KB
testcase_21 AC 1,232 ms
10,752 KB
testcase_22 AC 1,165 ms
10,752 KB
testcase_23 AC 1,120 ms
10,752 KB
testcase_24 AC 1,071 ms
10,880 KB
testcase_25 AC 1,152 ms
10,752 KB
testcase_26 AC 1,063 ms
10,880 KB
testcase_27 AC 1,108 ms
10,880 KB
testcase_28 AC 1,230 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=input().split()
mod=998244353
dp=[[[0]*34 for U in range(5)] for c in range(10)]
dp[0][0][0]=1
for a,b in zip(A,B):
    if "X" in b:
        continue
    b=int(b)
    for c in range(9,0,-1):
        for U in range(4,a-1,-1):
            for D in range(33,b-1,-1):
                dp[c][U][D]+=dp[c-1][U-a][D-b]
                dp[c][U][D]%=mod
ans=0
for a,b in zip(A,B):
    if b=="X":
        for U in range(5):
            for D in range(34):
                if (U+a,D)==(4,33):
                    ans+=dp[8][U][D]
                    ans%=mod
print(ans)
0