結果

問題 No.2783 4-33 Easy
ユーザー ypwwypww
提出日時 2024-06-14 23:00:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,531 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 155,504 KB
最終ジャッジ日時 2024-06-14 23:00:38
合計ジャッジ時間 11,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
70,168 KB
testcase_01 AC 64 ms
72,420 KB
testcase_02 AC 93 ms
78,560 KB
testcase_03 AC 70 ms
73,072 KB
testcase_04 AC 331 ms
138,528 KB
testcase_05 AC 281 ms
154,904 KB
testcase_06 AC 282 ms
154,052 KB
testcase_07 AC 258 ms
154,276 KB
testcase_08 AC 268 ms
154,228 KB
testcase_09 WA -
testcase_10 AC 424 ms
154,900 KB
testcase_11 AC 388 ms
154,980 KB
testcase_12 AC 389 ms
155,260 KB
testcase_13 AC 420 ms
155,156 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 417 ms
155,084 KB
testcase_17 WA -
testcase_18 AC 395 ms
155,232 KB
testcase_19 AC 413 ms
155,296 KB
testcase_20 AC 396 ms
154,964 KB
testcase_21 AC 393 ms
155,324 KB
testcase_22 AC 407 ms
154,908 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 401 ms
155,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
B = list(input().split())
dp = [[[[0]*5 for _ in range(34)] for __ in range(10)] for ___ in range(n+1)]

dp[0][0][0][0] = 1
m = 998244353
arr = []
for i in range(n):
    arr.append((B[i],A[i]))

arr.sort()

for i in range(n):
    a = arr[i][1]
    b = arr[i][0]
    b1 = b
    b2 = ''
    if b[-1]=='X':
        if b == 'X':
            b1 = 0
            b2 = 'X'
        else:
            b1 = int(b[:-1])
            b2 = 'X'
    b1 = int(b1)
    for j in range(10):
        for k in range(34):
            for l in range(5):
                if dp[i][j][k][l] == 0:
                    continue
                dp[i+1][j][k][l] += dp[i][j][k][l] % m
                if j == 9:
                    continue
                if l + a >= 5:
                    continue
                if k + b1 >= 34:
                    continue
                if j == 8:
                    if k + b1 != 33:
                        continue
                    if l + a != 4:
                        continue
                    if l+a < k:
                        if b2 == 'X' and b1 == 0:
                            dp[i+1][j+1][k][l+a] += dp[i][j][k][l] % m
                    else:
                        if b2 == 'X':
                            dp[i+1][j+1][k+b1][l+a] += dp[i][j][k][l] % m
                else:
                    if b2 == 'X':
                        continue
                    dp[i+1][j+1][k+b1][l+a] += dp[i][j][k][l] % m

ans = dp[n][9][33][4] % m
print(ans)
0