結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー furafura
提出日時 2020-07-26 00:24:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,332 bytes
コンパイル時間 2,553 ms
コンパイル使用メモリ 204,096 KB
実行使用メモリ 14,668 KB
最終ジャッジ日時 2023-09-10 02:21:21
合計ジャッジ時間 7,801 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 14 ms
11,876 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 17 ms
11,684 KB
testcase_10 AC 5 ms
4,384 KB
testcase_11 AC 18 ms
11,956 KB
testcase_12 AC 3 ms
4,380 KB
testcase_13 AC 15 ms
4,376 KB
testcase_14 AC 8 ms
4,376 KB
testcase_15 AC 5 ms
4,532 KB
testcase_16 AC 10 ms
6,740 KB
testcase_17 AC 14 ms
9,052 KB
testcase_18 AC 26 ms
5,036 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 1 ms
4,380 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 1 ms
4,380 KB
testcase_33 AC 1 ms
4,376 KB
testcase_34 AC 1 ms
4,384 KB
testcase_35 AC 2 ms
4,376 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 2 ms
4,380 KB
testcase_38 AC 1 ms
4,380 KB
testcase_39 AC 2 ms
4,384 KB
testcase_40 AC 1 ms
4,380 KB
testcase_41 AC 2 ms
4,376 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 1 ms
4,380 KB
testcase_44 AC 1 ms
4,380 KB
testcase_45 AC 1 ms
4,380 KB
testcase_46 AC 2 ms
4,376 KB
testcase_47 AC 1 ms
4,376 KB
testcase_48 AC 2 ms
4,380 KB
testcase_49 AC 28 ms
5,048 KB
testcase_50 AC 3 ms
4,380 KB
testcase_51 AC 3 ms
4,380 KB
testcase_52 AC 6 ms
4,376 KB
testcase_53 AC 4 ms
4,376 KB
testcase_54 AC 7 ms
4,380 KB
testcase_55 AC 1 ms
4,376 KB
testcase_56 AC 3 ms
4,380 KB
testcase_57 AC 12 ms
4,376 KB
testcase_58 AC 23 ms
5,232 KB
testcase_59 AC 18 ms
4,380 KB
testcase_60 AC 9 ms
4,380 KB
testcase_61 AC 36 ms
5,040 KB
testcase_62 AC 9 ms
4,380 KB
testcase_63 AC 24 ms
5,124 KB
testcase_64 AC 7 ms
4,380 KB
testcase_65 AC 5 ms
4,376 KB
testcase_66 AC 8 ms
4,380 KB
testcase_67 AC 8 ms
4,376 KB
testcase_68 AC 7 ms
4,380 KB
testcase_69 AC 8 ms
7,472 KB
testcase_70 AC 5 ms
5,000 KB
testcase_71 AC 7 ms
6,220 KB
testcase_72 AC 4 ms
4,384 KB
testcase_73 AC 6 ms
5,372 KB
testcase_74 AC 7 ms
6,144 KB
testcase_75 AC 7 ms
5,928 KB
testcase_76 AC 3 ms
4,376 KB
testcase_77 AC 11 ms
9,772 KB
testcase_78 AC 2 ms
4,380 KB
testcase_79 AC 2 ms
4,380 KB
testcase_80 AC 2 ms
4,380 KB
testcase_81 AC 2 ms
4,380 KB
testcase_82 AC 2 ms
4,380 KB
testcase_83 AC 1 ms
4,384 KB
testcase_84 AC 1 ms
4,376 KB
testcase_85 AC 2 ms
4,380 KB
testcase_86 AC 2 ms
4,380 KB
testcase_87 AC 2 ms
4,384 KB
testcase_88 AC 2 ms
4,376 KB
testcase_89 AC 10 ms
4,380 KB
testcase_90 AC 16 ms
4,380 KB
testcase_91 AC 27 ms
5,128 KB
testcase_92 AC 5 ms
4,380 KB
testcase_93 AC 17 ms
4,380 KB
testcase_94 AC 2 ms
4,384 KB
testcase_95 AC 18 ms
4,380 KB
testcase_96 AC 15 ms
4,376 KB
testcase_97 AC 13 ms
4,384 KB
testcase_98 AC 7 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

class mint{
	static const int MOD=1e9+7;
	int x;
public:
	mint():x(0){}
	mint(long long y){ x=y%MOD; if(x<0) x+=MOD; }

	mint& operator+=(const mint& m){ x+=m.x; if(x>=MOD) x-=MOD; return *this; }
	mint& operator-=(const mint& m){ x-=m.x; if(x<   0) x+=MOD; return *this; }
	mint& operator*=(const mint& m){ x=1LL*x*m.x%MOD; return *this; }
	mint& operator/=(const mint& m){ return *this*=inverse(m); }
	mint operator+(const mint& m)const{ return mint(*this)+=m; }
	mint operator-(const mint& m)const{ return mint(*this)-=m; }
	mint operator*(const mint& m)const{ return mint(*this)*=m; }
	mint operator/(const mint& m)const{ return mint(*this)/=m; }
	mint operator-()const{ return mint(-x); }

	friend mint inverse(const mint& m){
		int a=m.x,b=MOD,u=1,v=0;
		while(b>0){ int t=a/b; a-=t*b; swap(a,b); u-=t*v; swap(u,v); }
		return u;
	}

	friend istream& operator>>(istream& is,mint& m){ long long t; is>>t; m=mint(t); return is; }
	friend ostream& operator<<(ostream& os,const mint& m){ return os<<m.x; }
	int to_int()const{ return x; }
};

mint operator+(long long x,const mint& m){ return mint(x)+m; }
mint operator-(long long x,const mint& m){ return mint(x)-m; }
mint operator*(long long x,const mint& m){ return mint(x)*m; }
mint operator/(long long x,const mint& m){ return mint(x)/m; }

mint fact(int n){
	static vector<mint> memo={1};
	if(memo.size()<=n){
		int k=memo.size();
		memo.resize(n+1);
		for(;k<=n;k++) memo[k]=memo[k-1]*k;
	}
	return memo[n];
}

mint fact_inverse(int n){
	static vector<mint> memo={1};
	if(memo.size()<=n){
		int k=memo.size();
		memo.resize(n+1);
		memo[n]=inverse(fact(n));
		for(int i=n;i>k;i--) memo[i-1]=memo[i]*i;
	}
	return memo[n];
}

mint choose(int n,int k,int type=0){
	if(k==0) return 1;
	if(n< k) return 0;
	if(type==0){
		return fact(n)*fact_inverse(k)*fact_inverse(n-k);
	}
	else{
		if(k>n-k) k=n-k;
		mint res=fact_inverse(k);
		rep(i,k) res*=n-i;
		return res;
	}
}

mint multichoose(int n,int k,int type=0){
	return choose(n+k-1,k,type);
}

int main(){
	int n; scanf("%d",&n);
	vector<int> a;
	for(int x;~scanf("%d",&x);) a.emplace_back(x);

	int k=a.size();
	int d=n-accumulate(a.begin(),a.end(),0)-(k-1);
	if(d<0) cout<<"NA\n";
	else    cout<<multichoose(k+1,d)<<'\n';

	return 0;
}
0