結果

問題 No.2141 Enumeratest
ユーザー CyanmondCyanmond
提出日時 2022-12-02 21:24:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 202,332 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 22:27:58
合計ジャッジ時間 5,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include "atcoder/modint"
using Fp = atcoder::modint998244353;

int main() {
    int N, M;
    std::cin >> N >> M;

    Fp answer = 1;
    for (int i = 1; i <= M; ++i) {
        answer *= i;
    }

    for (int i = 0; i < N; ++i) {
        int a = M / N;
        if (i < M % N) {
            ++a;
        }
        for (int x = 1; x <= a; ++x) {
            answer /= x;
        }
    }

    std::cout << answer.val() << std::endl;
}
0