結果

問題 No.741 AscNumber(Easy)
ユーザー xuzijian629xuzijian629
提出日時 2018-10-09 04:26:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,103 bytes
コンパイル時間 1,324 ms
コンパイル使用メモリ 160,212 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-10-12 16:14:29
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
19,456 KB
testcase_01 AC 26 ms
19,456 KB
testcase_02 AC 27 ms
19,584 KB
testcase_03 AC 27 ms
19,456 KB
testcase_04 AC 27 ms
19,456 KB
testcase_05 AC 26 ms
19,584 KB
testcase_06 AC 32 ms
19,584 KB
testcase_07 AC 27 ms
19,456 KB
testcase_08 AC 27 ms
19,584 KB
testcase_09 AC 26 ms
19,456 KB
testcase_10 AC 26 ms
19,584 KB
testcase_11 AC 26 ms
19,456 KB
testcase_12 AC 26 ms
19,584 KB
testcase_13 AC 26 ms
19,456 KB
testcase_14 AC 26 ms
19,456 KB
testcase_15 AC 26 ms
19,584 KB
testcase_16 AC 26 ms
19,584 KB
testcase_17 AC 25 ms
19,584 KB
testcase_18 AC 26 ms
19,584 KB
testcase_19 AC 27 ms
19,456 KB
testcase_20 AC 26 ms
19,456 KB
testcase_21 AC 26 ms
19,456 KB
testcase_22 AC 26 ms
19,584 KB
testcase_23 AC 27 ms
19,456 KB
testcase_24 AC 26 ms
19,584 KB
testcase_25 AC 26 ms
19,456 KB
testcase_26 AC 26 ms
19,456 KB
testcase_27 AC 27 ms
19,456 KB
testcase_28 AC 27 ms
19,456 KB
testcase_29 AC 26 ms
19,456 KB
testcase_30 AC 27 ms
19,456 KB
testcase_31 AC 27 ms
19,456 KB
testcase_32 AC 27 ms
19,584 KB
testcase_33 AC 27 ms
19,584 KB
testcase_34 AC 26 ms
19,456 KB
testcase_35 AC 27 ms
19,456 KB
testcase_36 AC 26 ms
19,456 KB
testcase_37 AC 27 ms
19,456 KB
testcase_38 AC 27 ms
19,584 KB
testcase_39 AC 26 ms
19,584 KB
testcase_40 AC 26 ms
19,584 KB
testcase_41 AC 25 ms
19,456 KB
testcase_42 AC 26 ms
19,456 KB
testcase_43 AC 26 ms
19,456 KB
testcase_44 AC 26 ms
19,584 KB
testcase_45 AC 26 ms
19,456 KB
testcase_46 AC 26 ms
19,456 KB
testcase_47 AC 26 ms
19,456 KB
testcase_48 AC 27 ms
19,456 KB
testcase_49 AC 27 ms
19,584 KB
testcase_50 AC 26 ms
19,584 KB
testcase_51 AC 27 ms
19,456 KB
testcase_52 AC 26 ms
19,456 KB
testcase_53 AC 27 ms
19,584 KB
testcase_54 AC 26 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using vi = vector<i64>;
using vvi = vector<vi>;
constexpr i64 MOD = 1e9 + 7;

i64 modpow(i64 a, i64 n, i64 mod) {
    if (n == 0) return 1;
    if (n % 2 == 0) {
        i64 t = modpow(a, n / 2, mod);
        return t * t % mod;
    }
    return a * modpow(a, n - 1, mod) % mod;
}

i64 modinv(i64 a, i64 mod) {
    // mod is prime
    return modpow(a, mod - 2, mod);
}

struct Combination {
    const int MAX_N = 1 << 20;
    vi fact = vi(MAX_N);
    vi factinv = vi(MAX_N);

    Combination() {
        fact[0] = 1;
        for (int i = 1; i < MAX_N; i++) {
            fact[i] = fact[i - 1] * i % MOD;
        }
        factinv[MAX_N - 1] = modinv(fact[MAX_N - 1], MOD);
        for (int i = MAX_N - 2; i >= 0; i--) {
            factinv[i] = factinv[i + 1] * (i + 1) % MOD;
        }
    }

    i64 ncr(i64 n, i64 r) {
        if (r < 0 || r > n) return 0;
        return fact[n] * factinv[r] % MOD * factinv[n - r] % MOD;
    }
};

int main() {
    int n;
    cin >> n;
    Combination c;
    cout << c.ncr(10 + n - 1, n) << endl;
}
0