結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
69,328 KB
testcase_01 AC 63 ms
71,064 KB
testcase_02 AC 83 ms
78,228 KB
testcase_03 AC 66 ms
70,264 KB
testcase_04 AC 315 ms
138,292 KB
testcase_05 AC 296 ms
154,132 KB
testcase_06 AC 255 ms
154,024 KB
testcase_07 AC 256 ms
154,288 KB
testcase_08 AC 261 ms
154,492 KB
testcase_09 WA -
testcase_10 AC 371 ms
154,540 KB
testcase_11 AC 374 ms
155,120 KB
testcase_12 AC 380 ms
155,168 KB
testcase_13 AC 377 ms
154,892 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 375 ms
155,076 KB
testcase_17 WA -
testcase_18 AC 371 ms
155,256 KB
testcase_19 AC 399 ms
155,348 KB
testcase_20 AC 375 ms
155,252 KB
testcase_21 AC 374 ms
155,248 KB
testcase_22 AC 393 ms
154,592 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 379 ms
154,976 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+b1][l+a] += dp[i][j][k][l] % m
                    else:
                        if (l+a+4 < k+b1) and 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