結果

問題 No.1414 東大文系数学2021第2問改
ユーザー だれだれ
提出日時 2021-03-02 00:03:50
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,606 ms / 2,000 ms
コード長 1,990 bytes
コンパイル時間 4,946 ms
コンパイル使用メモリ 256,496 KB
実行使用メモリ 81,616 KB
最終ジャッジ日時 2024-04-14 04:06:23
合計ジャッジ時間 22,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
81,392 KB
testcase_01 AC 159 ms
81,524 KB
testcase_02 AC 850 ms
81,560 KB
testcase_03 AC 160 ms
81,336 KB
testcase_04 AC 1,587 ms
81,388 KB
testcase_05 AC 160 ms
81,560 KB
testcase_06 AC 160 ms
81,388 KB
testcase_07 AC 160 ms
81,516 KB
testcase_08 AC 159 ms
81,344 KB
testcase_09 AC 1,606 ms
81,384 KB
testcase_10 AC 159 ms
81,420 KB
testcase_11 AC 160 ms
81,324 KB
testcase_12 AC 159 ms
81,344 KB
testcase_13 AC 159 ms
81,480 KB
testcase_14 AC 868 ms
81,340 KB
testcase_15 AC 846 ms
81,344 KB
testcase_16 AC 847 ms
81,384 KB
testcase_17 AC 848 ms
81,284 KB
testcase_18 AC 847 ms
81,420 KB
testcase_19 AC 870 ms
81,616 KB
testcase_20 AC 867 ms
81,352 KB
testcase_21 AC 1,387 ms
81,388 KB
testcase_22 AC 158 ms
81,320 KB
testcase_23 AC 534 ms
81,320 KB
testcase_24 AC 295 ms
81,340 KB
testcase_25 AC 1,582 ms
81,348 KB
testcase_26 AC 1,581 ms
81,440 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;
    rep(i, 1, n - m + 2)
    {
        ans += comb(n - i * k, n - m) * comb(n - m + 1, i) * pow_mod(-1, i + 1, mod);
    }
    cout << ans.val() << endl;
}
0