結果
問題 | No.2833 Count Taiko Results |
ユーザー | ねしん |
提出日時 | 2024-05-21 11:26:42 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 474 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 82,016 KB |
実行使用メモリ | 847,556 KB |
最終ジャッジ日時 | 2024-06-21 10:08:45 |
合計ジャッジ時間 | 5,556 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,812 KB |
testcase_01 | AC | 35 ms
52,860 KB |
testcase_02 | AC | 33 ms
52,004 KB |
testcase_03 | AC | 32 ms
52,000 KB |
testcase_04 | AC | 49 ms
65,300 KB |
testcase_05 | AC | 62 ms
68,808 KB |
testcase_06 | AC | 42 ms
64,048 KB |
testcase_07 | AC | 52 ms
68,084 KB |
testcase_08 | AC | 82 ms
74,544 KB |
testcase_09 | AC | 65 ms
71,532 KB |
testcase_10 | AC | 46 ms
65,656 KB |
testcase_11 | AC | 46 ms
65,996 KB |
testcase_12 | AC | 79 ms
74,596 KB |
testcase_13 | AC | 44 ms
63,792 KB |
testcase_14 | AC | 31 ms
52,612 KB |
testcase_15 | AC | 53 ms
67,828 KB |
testcase_16 | AC | 56 ms
69,288 KB |
testcase_17 | AC | 48 ms
65,656 KB |
testcase_18 | AC | 54 ms
68,416 KB |
testcase_19 | AC | 47 ms
66,012 KB |
testcase_20 | AC | 54 ms
66,860 KB |
testcase_21 | AC | 46 ms
66,336 KB |
testcase_22 | AC | 42 ms
62,856 KB |
testcase_23 | AC | 43 ms
62,272 KB |
testcase_24 | AC | 52 ms
67,772 KB |
testcase_25 | AC | 52 ms
68,168 KB |
testcase_26 | AC | 37 ms
61,092 KB |
testcase_27 | AC | 50 ms
66,712 KB |
testcase_28 | AC | 57 ms
67,560 KB |
testcase_29 | AC | 44 ms
64,036 KB |
testcase_30 | AC | 68 ms
72,280 KB |
testcase_31 | AC | 45 ms
64,184 KB |
testcase_32 | AC | 72 ms
72,548 KB |
testcase_33 | AC | 36 ms
54,412 KB |
testcase_34 | MLE | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
ソースコード
N,K=list(map(int,input().split())) A=list(map(int,input().split())) B=list(map(int,input().split())) dp=[] MOD=998244353 for i in range(N+1): d=[] for j in range(N+1): d.append([0]*(N+1)) dp.append(d) dp[0][0][0]=1 for i in range(N): for j in range(N): for k in range(N): dp[i+1][max(j,k+1)][k+1]=(dp[i+1][max(j,k+1)][k+1]+dp[i][j][k]*A[i])%MOD dp[i+1][j][0]=(dp[i+1][j][0]+dp[i][j][k]*B[i])%MOD ans=0 for i in range(N+1): ans=(ans+dp[N][K][i])%MOD print(ans)