結果

問題 No.1238 選抜クラス
ユーザー kappybarkappybar
提出日時 2020-09-26 17:22:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 2,239 bytes
コンパイル時間 1,436 ms
コンパイル使用メモリ 165,360 KB
実行使用メモリ 7,668 KB
最終ジャッジ日時 2023-09-11 21:29:22
合計ジャッジ時間 3,452 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 3 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 3 ms
4,376 KB
testcase_17 AC 6 ms
5,096 KB
testcase_18 AC 5 ms
4,664 KB
testcase_19 AC 6 ms
5,704 KB
testcase_20 AC 6 ms
5,204 KB
testcase_21 AC 6 ms
5,296 KB
testcase_22 AC 5 ms
4,376 KB
testcase_23 AC 8 ms
7,652 KB
testcase_24 AC 8 ms
7,668 KB
testcase_25 AC 4 ms
4,376 KB
testcase_26 AC 6 ms
5,012 KB
testcase_27 AC 8 ms
6,332 KB
testcase_28 AC 5 ms
4,920 KB
testcase_29 AC 5 ms
4,784 KB
testcase_30 AC 3 ms
4,376 KB
testcase_31 AC 4 ms
4,376 KB
testcase_32 AC 5 ms
4,652 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 5 ms
4,400 KB
testcase_35 AC 3 ms
4,380 KB
testcase_36 AC 2 ms
4,380 KB
testcase_37 AC 3 ms
4,376 KB
testcase_38 AC 5 ms
4,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;


template<int mod> struct ModInt{
    long long x=0; 
    constexpr ModInt(long long x=0):x((x%mod+mod)%mod){}
    constexpr ModInt operator+(const ModInt& r)const{return ModInt(*this)+=r;}
    constexpr ModInt operator-(const ModInt& r)const{return ModInt(*this)-=r;}
    constexpr ModInt operator*(const ModInt& r)const{return ModInt(*this)*=r;}
    constexpr ModInt operator/(const ModInt& r)const{return ModInt(*this)/=r;}
    constexpr ModInt& operator+=(const ModInt& r){ if((x+=r.x)>=mod) x-=mod; return *this;}
    constexpr ModInt& operator-=(const ModInt& r){ if((x-=r.x)<0) x+=mod; return *this;}
    constexpr ModInt& operator*=(const ModInt& r){ if((x*=r.x)>=mod) x%=mod; return *this;}
    constexpr ModInt& operator/=(const ModInt& r){ return *this*=r.inv();}
    ModInt inv() const {
        long long s=x,sx=1,sy=0,t=mod,tx=0,ty=1;
        while(s%t!=0){
            long long temp=s/t,u=s-t*temp,ux=sx-temp*tx,uy=sy-temp*ty;
            s=t;sx=tx;sy=ty;
            t=u;tx=ux;ty=uy;
        }
        return ModInt(tx);
    }
    ModInt pow(long long n) const {
        ModInt a=1;
        ModInt b=*this;
        while(n>0){
            if(n&1) a*=b;
            b*=b;
            n>>=1;
        }
        return a;
    }
    friend constexpr ostream& operator<<(ostream& os,const ModInt<mod>& a) {return os << a.x;}
    friend constexpr istream& operator>>(istream& is,ModInt<mod>& a) {return is >> a.x;}
};
using mint = ModInt<MOD>;

int a[105];
mint dp[105][20010];

int main(){
    int n,k;
    cin >> n >> k;
    rep(i,n) cin >> a[i];
    rep(i,n) a[i] -= k;
    dp[0][10005] = 1;
    for(int i=0;i<n;i++){
        for(int j=0;j<20010;j++){
            if(dp[i][j].x==0) continue;
            dp[i+1][j] += dp[i][j];
            dp[i+1][j+a[i]] += dp[i][j];
        }
    }
    mint ans = 0;
    for(int j=10005;j<20010;j++){
        ans += dp[n][j];
    }
    cout << ans-1 << endl;
    return 0;
}
0