結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー ShibuyapShibuyap
提出日時 2022-01-15 17:24:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,337 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 204,016 KB
実行使用メモリ 31,596 KB
最終ジャッジ日時 2024-05-01 15:07:51
合計ジャッジ時間 7,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
29,428 KB
testcase_01 WA -
testcase_02 AC 22 ms
29,412 KB
testcase_03 AC 22 ms
29,568 KB
testcase_04 AC 23 ms
29,428 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 27 ms
29,672 KB
testcase_10 AC 28 ms
29,684 KB
testcase_11 AC 30 ms
29,676 KB
testcase_12 AC 25 ms
29,676 KB
testcase_13 AC 49 ms
30,444 KB
testcase_14 AC 32 ms
29,704 KB
testcase_15 AC 25 ms
29,784 KB
testcase_16 AC 25 ms
29,836 KB
testcase_17 AC 29 ms
29,668 KB
testcase_18 AC 68 ms
31,468 KB
testcase_19 AC 25 ms
29,432 KB
testcase_20 AC 22 ms
29,520 KB
testcase_21 AC 22 ms
29,484 KB
testcase_22 AC 22 ms
29,436 KB
testcase_23 AC 24 ms
29,420 KB
testcase_24 AC 23 ms
29,476 KB
testcase_25 AC 22 ms
29,520 KB
testcase_26 AC 24 ms
29,552 KB
testcase_27 AC 24 ms
29,436 KB
testcase_28 AC 25 ms
29,300 KB
testcase_29 AC 24 ms
29,528 KB
testcase_30 AC 24 ms
29,424 KB
testcase_31 AC 24 ms
29,456 KB
testcase_32 AC 21 ms
29,528 KB
testcase_33 AC 24 ms
29,424 KB
testcase_34 AC 22 ms
29,596 KB
testcase_35 AC 22 ms
29,476 KB
testcase_36 AC 22 ms
29,468 KB
testcase_37 AC 24 ms
29,444 KB
testcase_38 AC 23 ms
29,528 KB
testcase_39 AC 22 ms
29,324 KB
testcase_40 AC 24 ms
29,352 KB
testcase_41 AC 24 ms
29,468 KB
testcase_42 AC 24 ms
29,552 KB
testcase_43 AC 24 ms
29,468 KB
testcase_44 AC 23 ms
29,508 KB
testcase_45 AC 23 ms
29,476 KB
testcase_46 AC 22 ms
29,464 KB
testcase_47 AC 22 ms
29,468 KB
testcase_48 AC 21 ms
29,468 KB
testcase_49 AC 70 ms
31,468 KB
testcase_50 AC 27 ms
29,660 KB
testcase_51 AC 27 ms
29,776 KB
testcase_52 AC 33 ms
29,672 KB
testcase_53 AC 28 ms
29,752 KB
testcase_54 AC 34 ms
29,672 KB
testcase_55 AC 24 ms
29,500 KB
testcase_56 AC 27 ms
29,664 KB
testcase_57 AC 42 ms
30,444 KB
testcase_58 AC 62 ms
31,360 KB
testcase_59 AC 53 ms
30,448 KB
testcase_60 AC 38 ms
29,848 KB
testcase_61 AC 87 ms
31,468 KB
testcase_62 AC 39 ms
29,992 KB
testcase_63 AC 66 ms
31,392 KB
testcase_64 AC 33 ms
29,672 KB
testcase_65 AC 29 ms
29,672 KB
testcase_66 AC 34 ms
30,008 KB
testcase_67 AC 34 ms
29,892 KB
testcase_68 AC 34 ms
29,856 KB
testcase_69 AC 23 ms
29,404 KB
testcase_70 AC 23 ms
29,452 KB
testcase_71 AC 22 ms
29,504 KB
testcase_72 AC 24 ms
29,468 KB
testcase_73 AC 24 ms
29,432 KB
testcase_74 AC 24 ms
29,492 KB
testcase_75 AC 22 ms
29,304 KB
testcase_76 AC 21 ms
29,424 KB
testcase_77 AC 21 ms
29,352 KB
testcase_78 AC 21 ms
29,620 KB
testcase_79 AC 23 ms
29,496 KB
testcase_80 AC 22 ms
29,468 KB
testcase_81 AC 22 ms
29,396 KB
testcase_82 AC 22 ms
29,444 KB
testcase_83 AC 23 ms
29,464 KB
testcase_84 AC 23 ms
29,428 KB
testcase_85 AC 22 ms
29,612 KB
testcase_86 AC 21 ms
29,360 KB
testcase_87 AC 21 ms
29,436 KB
testcase_88 AC 23 ms
29,460 KB
testcase_89 AC 39 ms
30,064 KB
testcase_90 AC 50 ms
30,440 KB
testcase_91 AC 69 ms
31,596 KB
testcase_92 AC 29 ms
29,604 KB
testcase_93 AC 49 ms
30,572 KB
testcase_94 AC 24 ms
29,556 KB
testcase_95 AC 53 ms
30,444 KB
testcase_96 AC 47 ms
30,440 KB
testcase_97 AC 47 ms
30,572 KB
testcase_98 AC 34 ms
29,972 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