結果

問題 No.2783 4-33 Easy
ユーザー mattu34mattu34
提出日時 2024-06-21 06:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 2,811 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 90,376 KB
最終ジャッジ日時 2024-06-21 06:38:01
合計ジャッジ時間 7,582 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
89,776 KB
testcase_01 AC 139 ms
90,068 KB
testcase_02 AC 145 ms
89,696 KB
testcase_03 AC 163 ms
89,788 KB
testcase_04 AC 162 ms
89,852 KB
testcase_05 AC 218 ms
90,376 KB
testcase_06 AC 195 ms
89,944 KB
testcase_07 AC 196 ms
89,908 KB
testcase_08 AC 199 ms
89,688 KB
testcase_09 AC 193 ms
89,900 KB
testcase_10 AC 189 ms
90,140 KB
testcase_11 AC 218 ms
90,064 KB
testcase_12 AC 197 ms
90,056 KB
testcase_13 AC 188 ms
89,808 KB
testcase_14 AC 199 ms
89,724 KB
testcase_15 AC 181 ms
89,804 KB
testcase_16 AC 192 ms
89,752 KB
testcase_17 AC 193 ms
89,836 KB
testcase_18 AC 200 ms
90,348 KB
testcase_19 AC 201 ms
90,112 KB
testcase_20 AC 185 ms
89,868 KB
testcase_21 AC 222 ms
89,932 KB
testcase_22 AC 190 ms
89,988 KB
testcase_23 AC 184 ms
90,020 KB
testcase_24 AC 189 ms
90,004 KB
testcase_25 AC 208 ms
89,924 KB
testcase_26 AC 208 ms
89,860 KB
testcase_27 AC 194 ms
89,836 KB
testcase_28 AC 201 ms
89,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import sys
import heapq
import bisect
import itertools
from functools import lru_cache
from types import GeneratorType
from fractions import Fraction
import math
import copy
import random

# sys.setrecursionlimit(int(1e7))
# @lru_cache(maxsize=None) # CPython特化
# @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに


def bootstrap(f, stack=[]):  # yield
    def wrappedfunc(*args, **kwargs):
        if stack:
            return f(*args, **kwargs)
        else:
            to = f(*args, **kwargs)
            while True:
                if type(to) is GeneratorType:
                    stack.append(to)
                    to = next(to)
                else:
                    stack.pop()
                    if not stack:
                        break
                    to = stack[-1].send(to)
            return to

    return wrappedfunc


dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0))  # 上下右左
dxdy2 = (
    (0, 1),
    (0, -1),
    (1, 0),
    (-1, 0),
    (1, 1),
    (-1, -1),
    (1, -1),
    (-1, 1),
)  # 8方向すべて
dxdy3 = ((0, 1), (1, 0))  # 右 or 下
dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1))  # 斜め
INF = float("inf")
_INF = 1 << 60
MOD = 998244353
mod = 998244353
MOD2 = 10**9 + 7
mod2 = 10**9 + 7
# memo : len([a,b,...,z])==26
# memo : 2^20 >= 10^6
# 小数の計算を避ける : x/y -> (x*big)//y  ex:big=10**9
# @:小さい文字, ~:大きい文字,None: 空の文字列
# ユークリッドの互除法:gcd(x,y)=gcd(x,y-x)
# memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての
#        非負整数を表現することができる
# memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大
# memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x)
# memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋

input = lambda: sys.stdin.readline().rstrip()
mi = lambda: map(int, input().split())
li = lambda: list(mi())
ii = lambda: int(input())
py = lambda: print("Yes")
pn = lambda: print("No")
pf = lambda: print("First")
ps = lambda: print("Second")


N = ii()
A = li()
B = list(map(str, input().split()))

dp = [[[0] * 34 for _ in range(5)] for _ in range(9)]
dp[0][0][0] = 1
batu = []

for i in range(N):
    a = A[i]
    b = B[i]

    if b == "X":
        b = 0
        batu.append(a)
        continue
    elif b[-1] == "X":
        continue
    else:
        b = int(b)
    for j in range(7, -1, -1):
        for x in range(4, -1, -1):
            for y in range(33, -1, -1):
                if x + a <= 4 and y + b <= 33:
                    dp[j + 1][x + a][y + b] += dp[j][x][y]
                    dp[j + 1][x + a][y + b] %= MOD
ans = 0
for a in batu:
    ans += dp[8][4 - a][33]
    ans %= MOD
print(ans)

0