結果

問題 No.1238 選抜クラス
ユーザー manjuuu_onsenmanjuuu_onsen
提出日時 2020-09-26 14:13:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,037 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 180,712 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-06-29 01:40:03
合計ジャッジ時間 21,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
6,272 KB
testcase_01 AC 40 ms
7,040 KB
testcase_02 AC 97 ms
12,672 KB
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 15 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 64 ms
9,856 KB
testcase_08 AC 96 ms
12,928 KB
testcase_09 AC 143 ms
17,408 KB
testcase_10 AC 78 ms
10,880 KB
testcase_11 AC 135 ms
16,640 KB
testcase_12 AC 104 ms
13,696 KB
testcase_13 AC 105 ms
13,824 KB
testcase_14 AC 91 ms
12,672 KB
testcase_15 AC 147 ms
17,536 KB
testcase_16 AC 135 ms
16,512 KB
testcase_17 AC 1,026 ms
98,176 KB
testcase_18 AC 978 ms
95,360 KB
testcase_19 AC 993 ms
96,384 KB
testcase_20 AC 965 ms
93,696 KB
testcase_21 AC 915 ms
90,880 KB
testcase_22 AC 957 ms
98,048 KB
testcase_23 AC 1,020 ms
98,688 KB
testcase_24 AC 1,037 ms
98,560 KB
testcase_25 AC 961 ms
98,048 KB
testcase_26 AC 1,010 ms
98,432 KB
testcase_27 AC 1,018 ms
98,304 KB
testcase_28 AC 999 ms
98,304 KB
testcase_29 AC 956 ms
96,384 KB
testcase_30 AC 307 ms
32,384 KB
testcase_31 AC 544 ms
56,064 KB
testcase_32 AC 767 ms
76,672 KB
testcase_33 AC 63 ms
9,984 KB
testcase_34 AC 859 ms
84,096 KB
testcase_35 AC 394 ms
39,936 KB
testcase_36 AC 191 ms
21,376 KB
testcase_37 AC 338 ms
34,304 KB
testcase_38 AC 944 ms
93,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>


using namespace std;
using ll = long long;
inline int ri() {int _; cin >> _; return _;}
const int AS = 10000;
constexpr ll mod = 1e9 + 7;

int main()
{
	int n, k; cin >> n >> k;
	vector<int> a(n);
	for(int i = 0; i < n; i++)a[i] = ri() - k;
	vector<map<int,int>> dp(n + 1);
	dp[0][0] = 1;

	for(int i = 0; i < n; i++) {
		for(int j = -AS; j <= AS; j++) {
			dp[i + 1][j + a[i]] += dp[i][j];
			dp[i + 1][j + a[i]] %= mod;
			dp[i + 1][j] += dp[i][j];
			dp[i + 1][j] %= mod;
		}
	}

	ll sum = 0;
	for(int i = 0; i <= AS; i++) {
		sum += dp[n][i];
		sum %= mod;
	}

	cout << ((sum - 1) % mod + mod) % mod << endl;
}
0