結果

問題 No.2783 4-33 Easy
ユーザー ゼットゼット
提出日時 2024-06-14 21:48:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-14 21:48:14
合計ジャッジ時間 4,283 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
64,640 KB
testcase_01 AC 53 ms
63,488 KB
testcase_02 AC 60 ms
65,792 KB
testcase_03 AC 55 ms
65,280 KB
testcase_04 AC 98 ms
75,648 KB
testcase_05 AC 143 ms
76,800 KB
testcase_06 AC 110 ms
73,344 KB
testcase_07 AC 123 ms
77,056 KB
testcase_08 AC 130 ms
76,800 KB
testcase_09 AC 105 ms
73,728 KB
testcase_10 AC 108 ms
74,240 KB
testcase_11 AC 108 ms
74,436 KB
testcase_12 AC 107 ms
74,428 KB
testcase_13 AC 106 ms
73,856 KB
testcase_14 AC 106 ms
73,600 KB
testcase_15 AC 116 ms
73,856 KB
testcase_16 AC 106 ms
74,292 KB
testcase_17 AC 106 ms
74,112 KB
testcase_18 AC 109 ms
74,864 KB
testcase_19 AC 108 ms
74,560 KB
testcase_20 AC 108 ms
74,112 KB
testcase_21 AC 105 ms
74,112 KB
testcase_22 AC 107 ms
74,460 KB
testcase_23 AC 108 ms
74,368 KB
testcase_24 AC 107 ms
74,272 KB
testcase_25 AC 109 ms
74,116 KB
testcase_26 AC 106 ms
74,112 KB
testcase_27 AC 108 ms
74,604 KB
testcase_28 AC 117 ms
73,844 KB
権限があれば一括ダウンロードができます

ソースコード

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:
          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=0
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