結果
問題 | No.1886 Sum of Slide Max |
ユーザー | tnakao0123 |
提出日時 | 2022-03-28 23:31:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 58 ms / 2,000 ms |
コード長 | 1,455 bytes |
コンパイル時間 | 354 ms |
コンパイル使用メモリ | 42,668 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 13:54:08 |
合計ジャッジ時間 | 2,414 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 54 ms
5,248 KB |
testcase_06 | AC | 4 ms
5,248 KB |
testcase_07 | AC | 42 ms
5,248 KB |
testcase_08 | AC | 58 ms
5,248 KB |
testcase_09 | AC | 58 ms
5,248 KB |
testcase_10 | AC | 56 ms
5,248 KB |
testcase_11 | AC | 56 ms
5,248 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1886.cc: No.1886 Sum of Slide Max - yukicoder */ #include<cstdio> #include<algorithm> using namespace std; /* constant */ const int MAX_N = 200000; const int MOD = 998244353; /* typedef */ template<const int MOD> struct MI { int v; MI(): v() {} MI(int _v): v(_v % MOD) {} MI(long long _v): v(_v % MOD) {} MI operator+(const MI m) const { return MI(v + m.v); } MI operator-(const MI m) const { return MI(v + MOD - m.v); } MI operator*(const MI m) const { return MI((long long)v * m.v); } MI &operator+=(const MI m) { return (*this = *this + m); } MI &operator-=(const MI m) { return (*this = *this - m); } MI &operator*=(const MI m) { return (*this = *this * m); } MI pow(int n) const { // a^n % MOD MI pm = 1, a = *this; while (n > 0) { if (n & 1) pm *= a; a *= a; n >>= 1; } return pm; } MI inv() const { return pow(MOD - 2); } MI operator/(const MI m) const { return *this * m.inv(); } MI &operator/=(const MI m) { return (*this = *this / m); } }; typedef MI<MOD> mi; /* global variables */ mi invs[MAX_N + 2]; /* subroutines */ /* main */ int main() { int n; scanf("%d", &n); mi f = 1; for (int i = 2; i <= n + 1; i++) f *= i; invs[1] = 1; for (int i = 2; i <= n + 1; i++) invs[i] = mi(i).inv(); for (int k = 1; k <= n; k++) { mi x = mi(k) * (n - k + 1) * f * invs[k + 1]; printf("%d\n", x.v); } return 0; }