結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー ShibuyapShibuyap
提出日時 2022-01-15 17:24:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,337 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 202,608 KB
実行使用メモリ 31,472 KB
最終ジャッジ日時 2024-11-21 20:00:22
合計ジャッジ時間 8,984 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
29,560 KB
testcase_01 WA -
testcase_02 AC 28 ms
29,440 KB
testcase_03 AC 28 ms
29,440 KB
testcase_04 AC 28 ms
29,440 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 34 ms
29,680 KB
testcase_10 AC 34 ms
29,588 KB
testcase_11 AC 38 ms
29,672 KB
testcase_12 AC 32 ms
29,696 KB
testcase_13 AC 54 ms
30,440 KB
testcase_14 AC 35 ms
29,800 KB
testcase_15 AC 31 ms
29,696 KB
testcase_16 AC 30 ms
29,696 KB
testcase_17 AC 34 ms
29,696 KB
testcase_18 AC 76 ms
31,468 KB
testcase_19 AC 26 ms
29,568 KB
testcase_20 AC 29 ms
29,440 KB
testcase_21 AC 29 ms
29,476 KB
testcase_22 AC 29 ms
29,312 KB
testcase_23 AC 30 ms
29,480 KB
testcase_24 AC 30 ms
29,440 KB
testcase_25 AC 27 ms
29,440 KB
testcase_26 AC 26 ms
29,460 KB
testcase_27 AC 27 ms
29,440 KB
testcase_28 AC 27 ms
29,440 KB
testcase_29 AC 29 ms
29,440 KB
testcase_30 AC 30 ms
29,464 KB
testcase_31 AC 29 ms
29,440 KB
testcase_32 AC 28 ms
29,568 KB
testcase_33 AC 29 ms
29,312 KB
testcase_34 AC 29 ms
29,440 KB
testcase_35 AC 30 ms
29,516 KB
testcase_36 AC 28 ms
29,440 KB
testcase_37 AC 27 ms
29,568 KB
testcase_38 AC 28 ms
29,440 KB
testcase_39 AC 29 ms
29,328 KB
testcase_40 AC 29 ms
29,440 KB
testcase_41 AC 30 ms
29,568 KB
testcase_42 AC 28 ms
29,344 KB
testcase_43 AC 28 ms
29,312 KB
testcase_44 AC 28 ms
29,440 KB
testcase_45 AC 26 ms
29,464 KB
testcase_46 AC 27 ms
29,440 KB
testcase_47 AC 28 ms
29,440 KB
testcase_48 AC 28 ms
29,348 KB
testcase_49 AC 80 ms
31,468 KB
testcase_50 AC 30 ms
29,440 KB
testcase_51 AC 31 ms
29,568 KB
testcase_52 AC 37 ms
29,672 KB
testcase_53 AC 32 ms
29,696 KB
testcase_54 AC 41 ms
29,696 KB
testcase_55 AC 27 ms
29,504 KB
testcase_56 AC 31 ms
29,696 KB
testcase_57 AC 50 ms
30,404 KB
testcase_58 AC 74 ms
31,472 KB
testcase_59 AC 61 ms
30,448 KB
testcase_60 AC 44 ms
29,824 KB
testcase_61 AC 100 ms
31,348 KB
testcase_62 AC 41 ms
29,824 KB
testcase_63 AC 71 ms
31,468 KB
testcase_64 AC 40 ms
29,796 KB
testcase_65 AC 34 ms
29,676 KB
testcase_66 AC 41 ms
29,824 KB
testcase_67 AC 40 ms
29,824 KB
testcase_68 AC 40 ms
29,868 KB
testcase_69 AC 27 ms
29,440 KB
testcase_70 AC 27 ms
29,440 KB
testcase_71 AC 26 ms
29,440 KB
testcase_72 AC 28 ms
29,340 KB
testcase_73 AC 29 ms
29,312 KB
testcase_74 AC 28 ms
29,440 KB
testcase_75 AC 27 ms
29,400 KB
testcase_76 AC 26 ms
29,440 KB
testcase_77 AC 26 ms
29,440 KB
testcase_78 AC 28 ms
29,408 KB
testcase_79 AC 30 ms
29,312 KB
testcase_80 AC 29 ms
29,440 KB
testcase_81 AC 26 ms
29,440 KB
testcase_82 AC 26 ms
29,440 KB
testcase_83 AC 27 ms
29,440 KB
testcase_84 AC 27 ms
29,440 KB
testcase_85 AC 29 ms
29,440 KB
testcase_86 AC 27 ms
29,500 KB
testcase_87 AC 29 ms
29,440 KB
testcase_88 AC 29 ms
29,440 KB
testcase_89 AC 43 ms
29,824 KB
testcase_90 AC 55 ms
30,440 KB
testcase_91 AC 76 ms
31,464 KB
testcase_92 AC 35 ms
29,668 KB
testcase_93 AC 60 ms
30,448 KB
testcase_94 AC 34 ms
29,440 KB
testcase_95 AC 60 ms
30,400 KB
testcase_96 AC 53 ms
30,440 KB
testcase_97 AC 50 ms
30,444 KB
testcase_98 AC 39 ms
29,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define srep(i, s, t) for (int i = s; i < t; ++i)
#define drep(i, n) for (int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
#define MAX_N 200005

const int MAX = 1110000;
const int MOD = 1000000007;
long long fac[MAX], finv[MAX], inv[MAX];
// テーブルを作る前処理
void COMinit() {
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1]            = 1;
    for (int i = 2; i < MAX; i++) {
        fac[i]  = fac[i - 1] * i % MOD;
        inv[i]  = MOD - inv[MOD % i] * (MOD / i) % MOD;
        finv[i] = finv[i - 1] * inv[i] % MOD;
    }
}
// 二項係数計算
long long COM(int n, int k) {
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}

long long FINV(int n) {
    if (n < 0) return 0;
    return finv[n];
}

int main() {
    COMinit();
    int m;
    cin >> m;
    vector<int> v;
    int h;
    while (cin >> h) {
        v.push_back(h);
    }

    int n = v.size();

    int sum = 0;
    rep(i, n) sum += v[i];
    sum += n - 1;
    if (sum > m) {
        cout << "NA" << endl;
        return 0;
    }

    rep(i, n) {
        m -= v[i];
    }
    m++;

    int ans = COM(m, n);

    cout << ans << endl;
    return 0;
}
0