結果

問題 No.2783 4-33 Easy
ユーザー ゼットゼット
提出日時 2024-06-14 21:45:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 934 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 77,356 KB
最終ジャッジ日時 2024-06-14 21:45:48
合計ジャッジ時間 5,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,000 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 116 ms
73,984 KB
testcase_07 AC 128 ms
76,888 KB
testcase_08 AC 133 ms
77,056 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(str,input().split()))
B=list(map(str,input().split()))
dp=[[[0]*34 for i in range(5)] for j in range(10)]
L1=[]
L2=[]
for i in range(N):
  x=B[i]
  if x[-1]=='X':
    if len(x)>1:
      L2.append((int(A[i]),int(B[i][:-1])))
    else:
      L2.append((int(A[i]),0))
  else:
    L1.append((int(A[i]),int(x)))
mod=998244353
dp[0][0][0]=1
for _ in range(len(L1)):
  x,y=L1[_][:]
  for i in range(8,-1,-1):
    for j in range(5):
      for k in range(34):
        if i==8 and y>0:
          continue
        if j+x<=4 and k+y<=33:
          dp[i+1][j+x][k+y]+=dp[i][j][k]
          dp[i+1][j+x][k+y]%=mod
result=dp[9][4][33]
for _ in range(len(L2)):
  x,y=L2[_][:]
  if y>0:
    continue
  for j in range(5):
    for k in range(34):
      if y>0 and j<k:
        continue
      if j+x<=4 and k+y<=33:
        dp[9][j+x][k+y]+=dp[8][j][k]
        dp[9][j+x][k+y]%=mod
result+=dp[9][4][33]
result%=mod
print(result)
0