結果
問題 | No.1238 選抜クラス |
ユーザー | Nagisa |
提出日時 | 2020-09-25 22:44:58 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 519 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 850,624 KB |
最終ジャッジ日時 | 2024-06-28 07:04:50 |
合計ジャッジ時間 | 9,696 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,712 KB |
testcase_01 | AC | 41 ms
52,224 KB |
testcase_02 | AC | 54 ms
62,592 KB |
testcase_03 | AC | 41 ms
52,352 KB |
testcase_04 | AC | 44 ms
51,584 KB |
testcase_05 | AC | 40 ms
51,584 KB |
testcase_06 | AC | 40 ms
51,712 KB |
testcase_07 | AC | 51 ms
61,056 KB |
testcase_08 | AC | 53 ms
62,848 KB |
testcase_09 | AC | 57 ms
63,744 KB |
testcase_10 | AC | 52 ms
61,952 KB |
testcase_11 | AC | 58 ms
63,616 KB |
testcase_12 | AC | 53 ms
62,464 KB |
testcase_13 | AC | 55 ms
63,104 KB |
testcase_14 | AC | 53 ms
61,952 KB |
testcase_15 | AC | 59 ms
64,128 KB |
testcase_16 | AC | 57 ms
63,360 KB |
testcase_17 | TLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
N, K = map(int,input().split()) A = list(map(int,input().split())) dp = [[[0]*(max(sum(A),N*K)+1) for k in range(N+1)] for l in range(N+1)] # dp[i][j][k] := i番目まででj人選んで合計点がkになる組み合わせの数 dp[0][0][0] = 1 for i in range(N): for j in range(N): for k in range(sum(A)+1): dp[i+1][j][k] += dp[i][j][k] if k-A[i] >= 0: dp[i+1][j+1][k] += dp[i][j][k-A[i]] ans = 0 for k in range(1,N+1): ans += sum(dp[N][k][K*k:]) print(ans)