結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー maimai
提出日時 2016-07-09 13:45:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 1,566 bytes
コンパイル時間 1,452 ms
コンパイル使用メモリ 167,588 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-13 09:33:37
合計ジャッジ時間 4,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 99
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
typedef long long int ll;

#define debugv(v) printf("L%d %s => ",__LINE__,#v);for(auto e:v){cout<<e<<" ";}cout<<endl;
#define debugm(m) printf("L%d %s is..\n",__LINE__,#m);for(auto v:m){for(auto e:v){cout<<e<<" ";}cout<<endl;}
#define debuga(m,w) printf("L%d %s is => ",__LINE__,#m);for(int x=0;x<(w);x++){cout<<(m)[x]<<" ";}cout<<endl;
#define debugaa(m,w,h) printf("L%d %s is..\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[x][y]<<" ";}cout<<endl;}
#define ALL(v) (v).begin(),(v).end()
#define BIGINT 0x7FFFFFFF
#define E107 1000000007

template<typename T1,typename T2>
ostream& operator <<(ostream &o,const pair<T1,T2> p){o<<"("<<p.first<<":"<<p.second<<")";return o;}

ll powm(ll x,ll p,ll mod){
    ll y=1;
    while (0<p){
        if (p%2==1){
            y=(y*x)%mod;
        }
        x=(x*x)%mod;
        p/=2;
    }
    return y;
}

//int data[1000002];
// int dp[1000002];

int main(){
    int i,j,k,l;
    
    ll m,n;
    
    cin>>m;
    
    ll space=m+1;
    
    for (n=0;0<scanf("%d",&k);n++){
        space-=k+1;
        if (k==0){cout<<1<<endl;return 0;}
    }
    if (space<0){
        cout<<"NA"<<endl;
        return 0;
    }else if (space==0){
        cout<<1<<endl;
        return 0;
    }
    //printf("%d %d\n",space,n+1);
    ll result=1;
    ll a=space,b=space-n;
    
    for (ll a=space+n;space<a;a--){
        result=(result*a)%E107;
    }
    for (;0<n;n--){
        result=(result*powm(n,E107-2,E107))%E107;
    }
    
    cout<<result<<endl;

    return 0;
}
0