結果

問題 No.1886 Sum of Slide Max
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-21 03:23:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 1,217 ms
コンパイル使用メモリ 108,812 KB
実行使用メモリ 19,032 KB
最終ジャッジ日時 2024-06-01 09:17:25
合計ジャッジ時間 4,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
18,832 KB
testcase_01 AC 18 ms
18,836 KB
testcase_02 AC 18 ms
18,964 KB
testcase_03 AC 17 ms
19,032 KB
testcase_04 AC 18 ms
18,880 KB
testcase_05 AC 297 ms
18,820 KB
testcase_06 AC 31 ms
19,012 KB
testcase_07 AC 233 ms
19,032 KB
testcase_08 AC 308 ms
18,852 KB
testcase_09 AC 307 ms
18,792 KB
testcase_10 AC 317 ms
19,028 KB
testcase_11 AC 310 ms
18,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>

using namespace std;

using ll = long long;
const long long modc=998244353, MAX=1000000;
vector<long long> f, finv;

long long inv(long long x){
    long long ans = 1, e = modc-2;
    x %= modc;

    while (e > 0){
        if ((e & 1LL)) ans = (ans * x) % modc;
        e = e >> 1LL;
        x = (x*x) % modc;
    }

    return ans;
}

void init(){
    f.resize(MAX+1); finv.resize(MAX+1);
    f[0] = 1;
    for (int i=1; i<=MAX; i++) f[i] = (f[i-1]*i) % modc;
    finv[MAX] = inv(f[MAX]);
    for (int i=MAX-1; i>=0; i--) finv[i] = (finv[i+1] * (i+1)) % modc;
}

long long P(long long n, long long k){
    if (n < k || k < 0) return 0;

    return (f[n] * finv[n-k]) % modc;
}

int main(){

    init();
    ll N, ans;
    cin >> N;
    for (ll K=1; K<=N; K++){
        ans = ((N-K+1) * K) % modc;
        ans = ans * P(N+1, N+1) % modc;
        ans = ans * inv(K+1) % modc;
        cout << ans << endl;
    }

    return 0;
}
0