結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー Taiki0715Taiki0715
提出日時 2023-05-23 18:15:46
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,653 bytes
コンパイル時間 6,552 ms
コンパイル使用メモリ 125,940 KB
実行使用メモリ 4,508 KB
最終ジャッジ日時 2023-08-24 19:45:47
合計ジャッジ時間 10,088 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
4,384 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
4,380 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 AC 2 ms
4,376 KB
testcase_80 AC 1 ms
4,376 KB
testcase_81 AC 2 ms
4,380 KB
testcase_82 AC 1 ms
4,380 KB
testcase_83 AC 1 ms
4,380 KB
testcase_84 AC 1 ms
4,384 KB
testcase_85 AC 1 ms
4,380 KB
testcase_86 AC 2 ms
4,380 KB
testcase_87 AC 2 ms
4,380 KB
testcase_88 AC 1 ms
4,380 KB
testcase_89 AC 2 ms
4,376 KB
testcase_90 AC 2 ms
4,384 KB
testcase_91 AC 2 ms
4,384 KB
testcase_92 AC 1 ms
4,380 KB
testcase_93 AC 2 ms
4,380 KB
testcase_94 AC 2 ms
4,380 KB
testcase_95 AC 2 ms
4,376 KB
testcase_96 AC 1 ms
4,380 KB
testcase_97 AC 2 ms
4,380 KB
testcase_98 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <queue>
#include <stack>
#include <math.h>
#include <cassert>
#include <bitset>
#include <map>
#include <algorithm>
#include <iterator>
#include <string>
#include <utility>
#include <numeric>
#include <regex>
#include <complex>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ull=unsigned long long;
using P=pair<ll,ll>;
template<typename T>using minque=priority_queue<T,vector<T>,greater<T>>;
template<typename T>bool chmax(T &a,const T &b){return (a<b?(a=b,true):false);}
template<typename T>bool chmin(T &a,const T &b){return (a>b?(a=b,true):false);}
template<typename T1,typename T2>
ostream &operator<<(ostream &os,const pair<T1,T2>&p){
  os<<p.first<<" "<<p.second;
  return os;
}
template<typename T1,typename T2>
istream &operator>>(istream &is,pair<T1,T2>&p){
  is>>p.first>>p.second;
  return is;
}
template<typename T>
istream &operator>>(istream &is,vector<T> &a){
  for(auto &i:a)is>>i;
  return is;
}
#define reps(i,a,n) for(int i=(a);i<(n);i++)
#define rep(i,n) reps(i,0,n)
#define all(x) x.begin(),x.end()
ll myceil(ll a,ll b){return (a+b-1)/b;}
using mint=modint1000000007;
mint comb(int x,int y){
  mint ret=1;
  rep(i,x)ret*=i+1;
  rep(i,y)ret/=i+1;
  rep(i,x-y)ret/=i+1;
  return ret;
}
int main(){
  FILE *in=freopen("input.text","r",stdin);
  int m;
  cin>>m;
  vector<ll>h;
  ll x,sum=0;
  while(cin>>x){
    h.push_back(x);
    sum+=x;
  }
  int n=h.size();
  if(n==1&&h[0]==0)cout<<1<<endl;
  else if(sum+n-1>m)cout<<"NA"<<endl;
  else{
    m-=sum;
    m-=n-1;
    mint ans=comb(n+m,m);
    cout<<ans.val()<<endl;
  }
}
0