結果

問題 No.1414 東大文系数学2021第2問改
ユーザー だれだれ
提出日時 2021-03-02 16:26:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 2,000 bytes
コンパイル時間 4,541 ms
コンパイル使用メモリ 257,380 KB
実行使用メモリ 81,620 KB
最終ジャッジ日時 2024-04-14 04:42:30
合計ジャッジ時間 10,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
81,344 KB
testcase_01 AC 160 ms
81,324 KB
testcase_02 AC 186 ms
81,620 KB
testcase_03 AC 159 ms
81,388 KB
testcase_04 AC 214 ms
81,408 KB
testcase_05 AC 159 ms
81,388 KB
testcase_06 AC 158 ms
81,556 KB
testcase_07 AC 159 ms
81,380 KB
testcase_08 AC 160 ms
81,388 KB
testcase_09 AC 214 ms
81,484 KB
testcase_10 AC 159 ms
81,524 KB
testcase_11 AC 157 ms
81,388 KB
testcase_12 AC 160 ms
81,484 KB
testcase_13 AC 158 ms
81,284 KB
testcase_14 AC 204 ms
81,484 KB
testcase_15 AC 187 ms
81,484 KB
testcase_16 AC 185 ms
81,420 KB
testcase_17 AC 184 ms
81,336 KB
testcase_18 AC 187 ms
81,444 KB
testcase_19 AC 205 ms
81,524 KB
testcase_20 AC 204 ms
81,420 KB
testcase_21 AC 206 ms
81,424 KB
testcase_22 AC 159 ms
81,460 KB
testcase_23 AC 173 ms
81,456 KB
testcase_24 AC 165 ms
81,456 KB
testcase_25 AC 213 ms
81,284 KB
testcase_26 AC 213 ms
81,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define GET_MACRO(_1, _2, _3, NAME, ...) NAME
#define _rep(i, n) _rep2(i, 0, n)
#define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++)
#define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using i64 = long long;
template<class T>
bool chmin(T& a, const T& b) { return (b < a) ? (a = b, true) : false; }
template<class T>
bool chmax(T& a, const T& b) { return (b > a) ? (a = b, true) : false; }

template<typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,v.size())i>>v[j];return i;}
template<typename T>string join(vector<T>&v){stringstream s;rep(i,v.size())s<<' '<<v[i];return s.str().substr(1);}
template<typename T>ostream& operator<<(ostream&o,vector<T>&v){if(v.size())o<<join(v);return o;}
template<typename T>string join(vector<vector<T>>&vv){string s="\n";rep(i,vv.size())s+=join(vv[i])+"\n";return s;}
template<typename T>ostream& operator<<(ostream&o,vector<vector<T>>&vv){if(vv.size())o<<join(vv);return o;}

using mint = modint998244353;
const i64 mod = 998244353;

vector<mint> fact(int x)
{
    vector<mint> res(x + 1);
    res[0] = 1;
    rep(i, x)
    {
        res[i + 1] = res[i] * (i + 1);
    }
    return res;
}

vector<mint> finv(int x)
{
    vector<mint> res(x + 1);
    mint t = 1;
    for(int i = 1; i <= x; i++)
    {
        t *= i;
    }
    res[x] = 1 / t;
    for(int i = x; i > 0; i--)
    {
        res[i - 1] = res[i] * i;
    }
    return res;
}

auto r = fact(10000005);
auto l = finv(10000005);

mint comb(i64 x, i64 y)
{
    if(x < y ) return 0;
    return r[x] * l[y] * l[x - y];
}

int main()
{
    i64 k, m, n;
    cin >> n >> m >> k;
    mint ans = 0;
    int u = 1;
    rep(i, 1, n - m + 2)
    {
        ans += comb(n - i * k, n - m) * comb(n - m + 1, i) * u;
        u *= -1;
    }
    cout << ans.val() << endl;
}
0