結果
問題 | No.2783 4-33 Easy |
ユーザー | flippergo |
提出日時 | 2024-09-19 16:08:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,052 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 87,460 KB |
最終ジャッジ日時 | 2024-09-19 16:08:44 |
合計ジャッジ時間 | 6,065 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
18,080 KB |
testcase_01 | AC | 137 ms
12,416 KB |
testcase_02 | AC | 99 ms
12,160 KB |
testcase_03 | AC | 71 ms
11,648 KB |
testcase_04 | AC | 1,562 ms
57,344 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
MOD = 998244353 N = int(input()) A1 = list(map(int,input().split())) B1 = list(input().split()) A = [] B = [] C = [] NUM = [str(i) for i in range(33+1)] for i in range(N): if B1[i] in NUM: A.append(A1[i]) B.append(int(B1[i])) elif B1[i]=="X": C.append(A1[i]) N = len(A) A = [0]+A B = [0]+B dp = [[[[0 for _ in range(33+1)] for _ in range(4+1)] for _ in range(9+1)] for _ in range(N+1)] dp[1][1][A[1]][B[1]] = 1 for i in range(2,N+1): for j in range(1,8+1): for a in range(4+1): for b in range(33+1): dp[i][j][a][b] = dp[i-1][j][a][b] if j==1 and a==A[i] and b==B[i]: dp[i][j][a][b] = (dp[i][j][a][b]+1)%MOD elif j>=2 and a>=A[i] and b>=B[i]: dp[i][j][a][b] = (dp[i][j][a][b]+dp[i-1][j-1][a-A[i]][b-B[i]])%MOD for k in range(len(C)): for a in range(4+1): for b in range(33+1): if a>=C[k]: dp[N][9][a][b] = (dp[N][9][a][b]+dp[N][8][a-C[k]][b])%MOD print(dp[N][9][4][33])