結果

問題 No.2783 4-33 Easy
ユーザー ypwwypww
提出日時 2024-06-14 23:03:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,484 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 155,680 KB
最終ジャッジ日時 2024-06-14 23:03:25
合計ジャッジ時間 10,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,504 KB
testcase_01 AC 62 ms
71,808 KB
testcase_02 AC 94 ms
78,600 KB
testcase_03 AC 70 ms
72,704 KB
testcase_04 AC 302 ms
138,240 KB
testcase_05 AC 259 ms
155,392 KB
testcase_06 AC 259 ms
154,496 KB
testcase_07 AC 247 ms
154,496 KB
testcase_08 AC 247 ms
154,464 KB
testcase_09 WA -
testcase_10 AC 382 ms
155,008 KB
testcase_11 AC 355 ms
155,136 KB
testcase_12 AC 360 ms
155,276 KB
testcase_13 AC 390 ms
155,264 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 361 ms
155,228 KB
testcase_17 WA -
testcase_18 AC 357 ms
155,500 KB
testcase_19 AC 352 ms
155,420 KB
testcase_20 AC 383 ms
155,136 KB
testcase_21 AC 361 ms
155,152 KB
testcase_22 AC 360 ms
155,052 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 359 ms
155,276 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()
ans = 0
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(9):
        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 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:
                            ans += dp[i][j][k][l]
                            ans %= m
                    else:
                        if b2 == 'X':
                            ans += dp[i][j][k][l]
                            ans %= m
                else:
                    if b2 == 'X':
                        continue
                    dp[i+1][j+1][k+b1][l+a] += dp[i][j][k][l] % m

print(ans)
0