結果

問題 No.1886 Sum of Slide Max
ユーザー miscalcmiscalc
提出日時 2021-09-02 09:31:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-06-11 14:34:48
合計ジャッジ時間 3,329 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 34 ms
51,456 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 234 ms
75,904 KB
testcase_06 AC 61 ms
65,536 KB
testcase_07 AC 199 ms
75,952 KB
testcase_08 AC 247 ms
76,160 KB
testcase_09 AC 248 ms
76,056 KB
testcase_10 AC 250 ms
75,924 KB
testcase_11 AC 244 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 998244353

fac = 1
for i in range(1, n + 2):
  fac *= i
  fac %= mod

for k in range(1, n + 1):
  ans = k * (n - k + 1) % mod * fac % mod * pow(k + 1, mod - 2, mod) % mod
  print(ans)
0