結果

問題 No.2783 4-33 Easy
ユーザー vwxyzvwxyz
提出日時 2024-07-03 03:27:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 829 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-03 03:28:03
合計ジャッジ時間 31,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
10,880 KB
testcase_01 AC 81 ms
10,752 KB
testcase_02 AC 63 ms
10,752 KB
testcase_03 AC 54 ms
10,880 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1,338 ms
10,752 KB
testcase_07 AC 1,321 ms
10,880 KB
testcase_08 AC 1,279 ms
10,752 KB
testcase_09 AC 1,157 ms
10,880 KB
testcase_10 WA -
testcase_11 AC 1,153 ms
10,752 KB
testcase_12 AC 1,110 ms
10,752 KB
testcase_13 AC 1,083 ms
10,880 KB
testcase_14 AC 1,147 ms
10,880 KB
testcase_15 AC 1,093 ms
10,880 KB
testcase_16 AC 1,115 ms
10,752 KB
testcase_17 AC 1,133 ms
10,880 KB
testcase_18 WA -
testcase_19 AC 1,160 ms
10,752 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1,108 ms
10,752 KB
testcase_24 WA -
testcase_25 AC 1,133 ms
10,880 KB
testcase_26 AC 1,133 ms
10,752 KB
testcase_27 AC 1,174 ms
10,880 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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(9)]
dp[0][0][0]=1
for a,b in zip(A,B):
    if "X" in b:
        continue
    b=int(b)
    for c in range(8,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 "X" in b:
        if b=="X":
            d=0
        else:
            d=int(b.replace("X",""))
    else:
        d=int(b)
    for U in range(5):
        for D in range(34):
            if (U,D+d)==(4,33):
                if U<D+d:
                    if b in "X":
                        if d==0 or U>=D+d-4:
                            ans+=dp[8][U][D]
                            ans%=mod
print(ans)
0