結果
問題 | No.2833 Count Taiko Results |
ユーザー | ねしん |
提出日時 | 2024-05-21 11:51:24 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 474 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 82,356 KB |
実行使用メモリ | 847,660 KB |
最終ジャッジ日時 | 2024-06-21 10:08:48 |
合計ジャッジ時間 | 4,841 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,064 KB |
testcase_01 | AC | 31 ms
52,400 KB |
testcase_02 | AC | 31 ms
53,684 KB |
testcase_03 | AC | 31 ms
52,012 KB |
testcase_04 | AC | 44 ms
65,336 KB |
testcase_05 | AC | 63 ms
69,652 KB |
testcase_06 | AC | 43 ms
63,420 KB |
testcase_07 | AC | 53 ms
67,300 KB |
testcase_08 | AC | 97 ms
74,200 KB |
testcase_09 | AC | 65 ms
71,644 KB |
testcase_10 | AC | 48 ms
64,888 KB |
testcase_11 | AC | 48 ms
65,136 KB |
testcase_12 | AC | 82 ms
74,008 KB |
testcase_13 | AC | 45 ms
64,720 KB |
testcase_14 | AC | 33 ms
53,296 KB |
testcase_15 | AC | 51 ms
66,496 KB |
testcase_16 | AC | 56 ms
68,292 KB |
testcase_17 | AC | 46 ms
65,940 KB |
testcase_18 | AC | 53 ms
66,636 KB |
testcase_19 | AC | 47 ms
65,240 KB |
testcase_20 | AC | 54 ms
68,324 KB |
testcase_21 | AC | 48 ms
64,692 KB |
testcase_22 | AC | 46 ms
63,876 KB |
testcase_23 | AC | 42 ms
61,400 KB |
testcase_24 | AC | 55 ms
66,320 KB |
testcase_25 | AC | 57 ms
67,384 KB |
testcase_26 | AC | 43 ms
61,100 KB |
testcase_27 | AC | 56 ms
66,232 KB |
testcase_28 | AC | 61 ms
68,624 KB |
testcase_29 | AC | 48 ms
64,108 KB |
testcase_30 | AC | 70 ms
71,584 KB |
testcase_31 | AC | 45 ms
65,436 KB |
testcase_32 | AC | 72 ms
71,784 KB |
testcase_33 | AC | 33 ms
52,556 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)