結果

問題 No.1886 Sum of Slide Max
ユーザー SSRSSSRS
提出日時 2022-03-25 21:40:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 204,328 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-14 05:36:40
合計ジャッジ時間 4,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 271 ms
6,816 KB
testcase_06 AC 16 ms
6,816 KB
testcase_07 AC 209 ms
6,820 KB
testcase_08 AC 287 ms
6,816 KB
testcase_09 AC 288 ms
6,820 KB
testcase_10 AC 296 ms
6,816 KB
testcase_11 AC 288 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
long long modpow(long long a, long long b){
	long long ans = 1;
	while (b > 0){
		if (b % 2 == 1){
			ans *= a;
			ans %= MOD;
		}
		a *= a;
		a %= MOD;
		b /= 2;
	}
	return ans;
}
long long modinv(long long a){
	return modpow(a, MOD - 2);
}
vector<long long> mf = {1};
long long modfact(int n){
	if (mf.size() > n){
		return mf[n];
	} else {
		for (int i = mf.size(); i <= n; i++){
			long long next = mf.back() * i % MOD;
			mf.push_back(next);
		}
		return mf[n];
	}
}
int main(){
  int N;
  cin >> N;
  for (int i = 1; i <= N; i++){
    long long ans = modfact(N + 1) * modinv(i + 1) % MOD;
    cout << ans * (N - i + 1) % MOD * i % MOD << endl;
  }
}
0