結果

問題 No.1238 選抜クラス
ユーザー suta28407928suta28407928
提出日時 2020-09-26 00:41:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 3,478 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 100,404 KB
実行使用メモリ 19,600 KB
最終ジャッジ日時 2023-09-10 17:33:47
合計ジャッジ時間 7,355 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
19,600 KB
testcase_01 AC 20 ms
19,368 KB
testcase_02 AC 27 ms
19,388 KB
testcase_03 AC 19 ms
19,280 KB
testcase_04 AC 18 ms
19,296 KB
testcase_05 AC 19 ms
19,592 KB
testcase_06 AC 18 ms
19,280 KB
testcase_07 AC 24 ms
19,340 KB
testcase_08 AC 27 ms
19,432 KB
testcase_09 AC 35 ms
19,296 KB
testcase_10 AC 25 ms
19,304 KB
testcase_11 AC 33 ms
19,292 KB
testcase_12 AC 29 ms
19,404 KB
testcase_13 AC 30 ms
19,316 KB
testcase_14 AC 29 ms
19,312 KB
testcase_15 AC 35 ms
19,292 KB
testcase_16 AC 34 ms
19,304 KB
testcase_17 RE -
testcase_18 AC 312 ms
19,288 KB
testcase_19 AC 317 ms
19,300 KB
testcase_20 AC 301 ms
19,284 KB
testcase_21 AC 286 ms
19,412 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 329 ms
19,408 KB
testcase_30 AC 69 ms
19,316 KB
testcase_31 AC 139 ms
19,300 KB
testcase_32 AC 224 ms
19,300 KB
testcase_33 AC 27 ms
19,580 KB
testcase_34 AC 261 ms
19,316 KB
testcase_35 AC 86 ms
19,288 KB
testcase_36 AC 42 ms
19,348 KB
testcase_37 AC 70 ms
19,284 KB
testcase_38 AC 303 ms
19,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cstdlib>
#include <cmath>
#include <vector>
#include <unordered_map>
#include <map>
#include <set>
#include <algorithm>
#include <queue>
#include <stack>
#include <functional>
#include <bitset>
#include <assert.h>
#include <unordered_map>
#include <fstream>
#include <ctime>
#include <complex>
using namespace std;
typedef long long ll;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<char> vc;
typedef vector<string> vs;
typedef vector<bool> vb;
typedef vector<double> vd;
typedef pair<ll,ll> P;
typedef pair<int,int> pii;
typedef vector<P> vpl;
typedef tuple<ll,ll,ll> tapu;
#define rep(i,n) for(int i=0; i<(n); i++)
#define REP(i,a,b) for(int i=(a); i<(b); i++)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
const int inf = 1<<30;
const ll linf = 1LL<<62;
const int MAX = 2020000;
ll dy[8] = {1,-1,0,0,1,-1,1,-1};
ll dx[8] = {0,0,1,-1,1,-1,-1,1};
const double pi = acos(-1);
const double eps = 1e-7;
template<typename T1,typename T2> inline bool chmin(T1 &a,T2 b){
	if(a>b){
		a = b; return true;
	}
	else return false;
}
template<typename T1,typename T2> inline bool chmax(T1 &a,T2 b){
	if(a<b){
		a = b; return true;
	}
	else return false;
}
template<typename T> inline void print(T &a){
    for(auto itr = a.begin(); itr != a.end(); itr++){
		cout << *itr << " ";
	}
    cout << "\n";
}
template<typename T1,typename T2> inline void print2(T1 a, T2 b){
	cout << "debug: " << a << " " << b << "\n";
}
template<typename T1,typename T2,typename T3> inline void print3(T1 a, T2 b, T3 c){
	cout << "debug: " << a << " " << b << " " << c << "\n";
}
void mark() {cout << "#" << "\n";}
ll pcount(ll x) {return __builtin_popcountll(x);}
const int mod = 1e9 + 7;
//const int mod = 998244353;

template <std::uint_fast64_t Modulus> class modint {
  using u64 = std::uint_fast64_t;

public:
  u64 a;

  constexpr modint(const u64 x = 0) noexcept : a(x % Modulus) {}
  constexpr u64 &value() noexcept { return a; }
  constexpr const u64 &value() const noexcept { return a; }
  constexpr modint operator+(const modint rhs) const noexcept {
	return modint(*this) += rhs;
  }
  constexpr modint operator-(const modint rhs) const noexcept {
	return modint(*this) -= rhs;
  }
  constexpr modint operator*(const modint rhs) const noexcept {
	return modint(*this) *= rhs;
  }
  constexpr modint operator/(const modint rhs) const noexcept {
	return modint(*this) /= rhs;
  }
  constexpr modint &operator+=(const modint rhs) noexcept {
	a += rhs.a;
	if (a >= Modulus) {
	  a -= Modulus;
	}
	return *this;
  }
  constexpr modint &operator-=(const modint rhs) noexcept {
	if (a < rhs.a) {
	  a += Modulus;
	}
	a -= rhs.a;
	return *this;
  }
  constexpr modint &operator*=(const modint rhs) noexcept {
	a = a * rhs.a % Modulus;
	return *this;
  }
  constexpr modint &operator/=(modint rhs) noexcept {
	u64 exp = Modulus - 2;
	while (exp) {
	  if (exp % 2) {
		*this *= rhs;
	  }
	  rhs *= rhs;
	  exp /= 2;
	}
	return *this;
  }
};

using mint = modint<mod>;

mint dp[2][101][10101];

int main(){
	int n,K; cin >> n >> K;
	vl a(n); rep(i,n) cin >> a[i];
	dp[0][0][0] = 1;
	rep(i,n){
		rep(j,n+1) rep(k,10001) dp[1][j][k] = 0;
		rep(j,n+1){
			rep(k,10001){
				if(k+a[i]<=10000) dp[1][j+1][k+a[i]] += dp[0][j][k];
				dp[1][j][k] += dp[0][j][k];
			}
		}
		swap(dp[0], dp[1]);
	}
	mint ans = 0;
	REP(i,1,n+1){
		rep(j,10001){
			if(j >= K * i) ans += dp[0][i][j];
		}
	}
	cout << ans.value() << "\n";
}
0