結果
問題 | No.389 ロジックパズルの組み合わせ |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-11-09 12:39:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,598 bytes |
コンパイル時間 | 500 ms |
コンパイル使用メモリ | 63,420 KB |
実行使用メモリ | 16,584 KB |
最終ジャッジ日時 | 2024-11-25 05:27:49 |
合計ジャッジ時間 | 4,805 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
15,244 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
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 | AC | 53 ms
6,816 KB |
testcase_50 | AC | 4 ms
6,816 KB |
testcase_51 | AC | 4 ms
6,816 KB |
testcase_52 | AC | 11 ms
6,816 KB |
testcase_53 | AC | 6 ms
6,816 KB |
testcase_54 | AC | 13 ms
6,816 KB |
testcase_55 | AC | 2 ms
6,816 KB |
testcase_56 | AC | 5 ms
6,820 KB |
testcase_57 | AC | 23 ms
6,820 KB |
testcase_58 | AC | 44 ms
6,820 KB |
testcase_59 | AC | 33 ms
6,820 KB |
testcase_60 | AC | 16 ms
6,816 KB |
testcase_61 | AC | 70 ms
6,820 KB |
testcase_62 | AC | 17 ms
6,816 KB |
testcase_63 | AC | 46 ms
6,820 KB |
testcase_64 | AC | 13 ms
6,816 KB |
testcase_65 | AC | 8 ms
6,816 KB |
testcase_66 | AC | 15 ms
6,820 KB |
testcase_67 | AC | 14 ms
6,816 KB |
testcase_68 | AC | 14 ms
6,816 KB |
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 | 1 ms
6,816 KB |
testcase_80 | AC | 2 ms
6,816 KB |
testcase_81 | AC | 1 ms
6,816 KB |
testcase_82 | AC | 2 ms
6,816 KB |
testcase_83 | AC | 1 ms
6,820 KB |
testcase_84 | AC | 2 ms
6,820 KB |
testcase_85 | AC | 1 ms
6,820 KB |
testcase_86 | AC | 2 ms
6,816 KB |
testcase_87 | AC | 1 ms
6,820 KB |
testcase_88 | AC | 2 ms
6,816 KB |
testcase_89 | WA | - |
testcase_90 | WA | - |
testcase_91 | WA | - |
testcase_92 | WA | - |
testcase_93 | WA | - |
testcase_94 | WA | - |
testcase_95 | WA | - |
testcase_96 | WA | - |
testcase_97 | WA | - |
testcase_98 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <algorithm> using namespace std; typedef long long ll; typedef vector<int> vint; typedef pair<int,int> pint; typedef vector<pint> vpint; #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) #define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++) #define all(v) (v).begin(),(v).end() #define pb push_back #define mp make_pair #define fi first #define se second #define chmax(a, b) a = (((a)<(b)) ? (b) : (a)) #define chmin(a, b) a = (((a)>(b)) ? (b) : (a)) const int MOD = 1e9 + 7; const int INF = 1e9; int m; vector<int> h; int inv[1000010]; int fac[1000010], facInv[1000010]; class MATH{ public: void init(void){ inverse(); factroial(); } void inverse(void){ inv[1] = 1; for (int i = 2; i <= 1000000; ++i){ inv[i] = MOD - (MOD / i) * inv[MOD % i] % MOD; } } void factroial(void){ fac[0] = facInv[0] = 1; for (int i = 1; i <= 1000000; ++i){ fac[i] = (fac[i - 1] * i) % MOD; facInv[i] = (facInv[i - 1] * inv[i]) % MOD; } } ll nCr(ll n, ll c){ ll ret = fac[n]; (ret *= facInv[c]) %= MOD; (ret *= facInv[n - c]) %= MOD; return ret; } }; int main(void){ cin >> m; int t, sum = 0; while(cin >> t){ h.pb(t); sum += t; } if(h[0] == 0 || h[0] == m){ printf("1\n"); return 0; } if(h.size() + sum - 1 > m){ printf("NA\n"); return 0; } int n = h.size() + (m - (sum + h.size() - 1)); int k = m - (sum + h.size() - 1); MATH mt; mt.init(); // printf("%d %d\n", n, k); printf("%lld\n", mt.nCr(n, k) % MOD); return 0; }