結果

問題 No.1886 Sum of Slide Max
ユーザー rlangevinrlangevin
提出日時 2023-11-14 12:41:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 81,604 KB
実行使用メモリ 81,308 KB
最終ジャッジ日時 2024-09-26 03:34:31
合計ジャッジ時間 4,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,440 KB
testcase_01 AC 45 ms
61,952 KB
testcase_02 AC 44 ms
61,696 KB
testcase_03 AC 46 ms
61,312 KB
testcase_04 AC 46 ms
61,440 KB
testcase_05 AC 286 ms
79,560 KB
testcase_06 AC 70 ms
72,192 KB
testcase_07 AC 231 ms
81,308 KB
testcase_08 AC 299 ms
79,232 KB
testcase_09 AC 302 ms
79,356 KB
testcase_10 AC 304 ms
79,232 KB
testcase_11 AC 294 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = 2*10**5+5
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

N = int(input())
for K in range(1, N+1):
    ans = (N - K + 1) * K * fact[N - K] * fact[N + 1] * invfact[N + 1 - K - 1]
    ans *= pow(K + 1, mod - 2, mod)
    ans %= mod
    print(ans)
0