結果
問題 | No.1238 選抜クラス |
ユーザー | Nagisa |
提出日時 | 2020-09-25 22:44:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 519 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 411,392 KB |
最終ジャッジ日時 | 2024-06-28 07:03:49 |
合計ジャッジ時間 | 4,884 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
16,128 KB |
testcase_01 | AC | 34 ms
10,624 KB |
testcase_02 | AC | 49 ms
10,880 KB |
testcase_03 | AC | 31 ms
10,624 KB |
testcase_04 | AC | 32 ms
10,496 KB |
testcase_05 | AC | 32 ms
10,624 KB |
testcase_06 | AC | 31 ms
10,496 KB |
testcase_07 | AC | 38 ms
10,496 KB |
testcase_08 | AC | 55 ms
11,008 KB |
testcase_09 | AC | 132 ms
11,776 KB |
testcase_10 | AC | 45 ms
10,752 KB |
testcase_11 | AC | 99 ms
11,392 KB |
testcase_12 | AC | 61 ms
11,008 KB |
testcase_13 | AC | 68 ms
11,136 KB |
testcase_14 | AC | 46 ms
10,752 KB |
testcase_15 | AC | 129 ms
11,648 KB |
testcase_16 | AC | 124 ms
11,648 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
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)