結果

問題 No.2783 4-33 Easy
ユーザー katonyonkokatonyonko
提出日時 2024-06-14 22:23:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 2,461 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-06-14 22:23:21
合計ジャッジ時間 6,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,632 KB
testcase_01 AC 74 ms
74,624 KB
testcase_02 AC 72 ms
74,880 KB
testcase_03 AC 70 ms
74,460 KB
testcase_04 AC 180 ms
97,056 KB
testcase_05 AC 185 ms
103,552 KB
testcase_06 AC 183 ms
103,168 KB
testcase_07 AC 182 ms
103,168 KB
testcase_08 AC 181 ms
103,296 KB
testcase_09 AC 201 ms
102,912 KB
testcase_10 AC 201 ms
103,296 KB
testcase_11 AC 184 ms
103,296 KB
testcase_12 AC 184 ms
103,936 KB
testcase_13 AC 180 ms
103,808 KB
testcase_14 AC 208 ms
103,424 KB
testcase_15 AC 183 ms
103,424 KB
testcase_16 AC 209 ms
103,424 KB
testcase_17 AC 188 ms
103,552 KB
testcase_18 AC 188 ms
103,296 KB
testcase_19 AC 247 ms
103,040 KB
testcase_20 AC 241 ms
103,116 KB
testcase_21 AC 185 ms
103,552 KB
testcase_22 AC 249 ms
103,200 KB
testcase_23 AC 236 ms
103,424 KB
testcase_24 AC 213 ms
103,040 KB
testcase_25 AC 190 ms
103,568 KB
testcase_26 AC 198 ms
103,424 KB
testcase_27 AC 188 ms
103,756 KB
testcase_28 AC 185 ms
103,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import io
import sys
from collections import defaultdict, deque, Counter
from itertools import permutations, combinations, accumulate
from heapq import heappush, heappop
from bisect import bisect_right, bisect_left
from math import gcd
import math

_INPUT = """\
6
14
1 0 1 0 0 2 0 1 0 3 0 0 1 0
2 7 1 8 2 8 1 8 2 8 4 5X 9X X
81
4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
33 0 0 0 0 0 0 0 X 0 0 0 0 0 0 0 0 1X 0 0 0 0 0 0 0 0 1X 0 0 0 0 0 0 0 0 1X 0 0 0 0 0 0 0 0 1X 0 0 0 0 0 0 0 0 1X 0 0 0 0 0 0 0 0 1X 0 0 0 0 0 0 0 0 1X 0 0 0 0 0 0 0 0 1X
52
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 0 0 0 3 1 5X 1 1 0 0 0 5 0 3 X 0 1 0 2 0 0 7 0 0 0 2 0 1 0 0 0 0 0 0 7 1 10 2 0 0 1 X 5 4 0 1 0 0 0 2 X
"""

mod=998244353
def input():
  return sys.stdin.readline()[:-1]

def solve(test):
  N=int(input())
  A=list(map(int,input().split()))
  B=list(input().split())
  d=defaultdict(int)
  ll=[]
  for i in range(N):
    if B[i]=='X':
      d[A[i]]+=1
    if B[i][-1]!='X':
      ll.append((A[i],int(B[i])))
  dp=[0]*(len(ll)+1)*5*34*9
  def idx(x,y,z,w):
    return x*5*34*9+y*34*9+z*9+w
  dp[idx(0,0,0,0)]=1
  for i in range(len(ll)):
    for j in range(5):
      for k in range(34):
        for l in range(9):
          dp[idx(i+1,j,k,l)]+=dp[idx(i,j,k,l)]
          dp[idx(i+1,j,k,l)]%=mod
          if ll[i][0]+j<5 and ll[i][1]+k<34 and l+1<9:
            dp[idx(i+1,j+ll[i][0],k+ll[i][1],l+1)]+=dp[idx(i,j,k,l)]
            dp[idx(i+1,j+ll[i][0],k+ll[i][1],l+1)]%=mod
  ans=sum([d[i]*dp[idx(len(ll),4-i,33,8)] for i in range(5)])%mod
  print(ans)

def random_input():
  from random import randint,shuffle
  N=randint(1,10)
  M=randint(1,N)
  A=list(range(1,M+1))+[randint(1,M) for _ in range(N-M)]
  shuffle(A)
  return (" ".join(map(str, [N,M]))+"\n"+" ".join(map(str, A))+"\n")*3

def simple_solve():
  return []

def main(test):
  if test==0:
    solve(0)
  elif test==1:
    sys.stdin = io.StringIO(_INPUT)
    case_no=int(input())
    for _ in range(case_no):
      solve(0)
  else:
    for i in range(1000):
      sys.stdin = io.StringIO(random_input())
      x=solve(1)
      y=simple_solve()
      if x!=y:
        print(i,x,y)
        print(*[line for line in sys.stdin],sep='')
        break

#0:提出用、1:与えられたテスト用、2:ストレステスト用
main(0)
0