結果
問題 | No.2783 4-33 Easy |
ユーザー | ゼット |
提出日時 | 2024-06-14 21:44:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 923 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 77,056 KB |
最終ジャッジ日時 | 2024-06-14 21:44:30 |
合計ジャッジ時間 | 4,141 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
64,512 KB |
testcase_01 | AC | 49 ms
64,768 KB |
testcase_02 | AC | 51 ms
67,200 KB |
testcase_03 | AC | 50 ms
65,792 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 112 ms
76,928 KB |
testcase_08 | AC | 118 ms
76,544 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
N=int(input()) A=list(map(str,input().split())) B=list(map(str,input().split())) dp=[[[0]*34 for i in range(5)] for j in range(10)] L1=[] L2=[] for i in range(N): x=B[i] if x[-1]=='X': if len(x)>1: L2.append((int(A[i]),int(B[i][:-1]))) else: L2.append((int(A[i]),0)) else: L1.append((int(A[i]),int(x))) mod=998244353 dp[0][0][0]=1 for _ in range(len(L1)): x,y=L1[_][:] for i in range(8,-1,-1): for j in range(5): for k in range(34): if i==8 and j<k: continue if j+x<=4 and k+y<=33: dp[i+1][j+x][k+y]+=dp[i][j][k] dp[i+1][j+x][k+y]%=mod result=0 for _ in range(len(L2)): x,y=L2[_][:] if y>0: continue for j in range(5): for k in range(34): if y>0 and j<k: continue if j+x<=4 and k+y<=33: dp[9][j+x][k+y]+=dp[8][j][k] dp[9][j+x][k+y]%=mod result+=dp[9][4][33] result%=mod print(result)