結果

問題 No.2818 A Game I Play to Pass the Time
ユーザー hitonanodehitonanode
提出日時 2024-07-19 22:50:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,475 ms / 2,000 ms
コード長 1,135 bytes
コンパイル時間 1,011 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 22:51:04
合計ジャッジ時間 32,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1,432 ms
5,376 KB
testcase_02 AC 1,446 ms
5,376 KB
testcase_03 AC 1,430 ms
5,376 KB
testcase_04 AC 1,475 ms
5,376 KB
testcase_05 AC 1,438 ms
5,376 KB
testcase_06 AC 1,434 ms
5,376 KB
testcase_07 AC 1,423 ms
5,376 KB
testcase_08 AC 1,440 ms
5,376 KB
testcase_09 AC 1,427 ms
5,376 KB
testcase_10 AC 1,430 ms
5,376 KB
testcase_11 AC 1,428 ms
5,376 KB
testcase_12 AC 1,423 ms
5,376 KB
testcase_13 AC 1,428 ms
5,376 KB
testcase_14 AC 1,425 ms
5,376 KB
testcase_15 AC 1,424 ms
5,376 KB
testcase_16 AC 1,418 ms
5,376 KB
testcase_17 AC 1,421 ms
5,376 KB
testcase_18 AC 1,426 ms
5,376 KB
testcase_19 AC 1,433 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

#include <atcoder/modint>
using mint = atcoder::modint998244353;

using lint = long long;

mint solve(lint N, lint S) {
    auto binom = [&](lint n, lint r) -> mint {
        if (n < 0 or r < 0 or r > n) return 0;
        mint num = 1, den = 1;
        r = std::min(r, n - r);
        for (lint i = 0; i < r; ++i) {
            num *= n - i;
            den *= i + 1;
        }
        return num / den;
    };

    mint ret = 1;

    {
        lint cur = N;
        for (int p = 2; cur > 1; ++p) {

            int deg = 0;
            while (cur % p == 0) {
                cur /= p;
                ++deg;
            }

            mint tmp = 0, b = 1;

            if (!deg) continue;

            for (int d = 0; d <= deg; ++d) {
                tmp += binom(deg - d + S - 2, S - 2) * b;
                b *= p;
            }

            ret *= tmp;
        }
    }

    return ret * S;
}

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);

    int T;
    cin >> T;
    while (T--) {
        lint N, S;
        cin >> N >> S;
        cout << solve(N, S).val() << '\n';
    }
}
0