結果

問題 No.1886 Sum of Slide Max
ユーザー ああいいああいい
提出日時 2022-03-25 22:18:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-10-14 06:11:59
合計ジャッジ時間 2,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,752 KB
testcase_01 AC 38 ms
52,588 KB
testcase_02 AC 37 ms
53,492 KB
testcase_03 AC 37 ms
52,072 KB
testcase_04 AC 37 ms
52,456 KB
testcase_05 AC 105 ms
79,212 KB
testcase_06 AC 56 ms
67,152 KB
testcase_07 AC 99 ms
81,920 KB
testcase_08 AC 108 ms
79,328 KB
testcase_09 AC 106 ms
79,036 KB
testcase_10 AC 109 ms
79,148 KB
testcase_11 AC 107 ms
79,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = N + 10
P = 998244353
fact = [1] * C
fact_inv = [1] * C
for i in range(2,C):
    fact[i] = fact[i-1] * i % P
fact_inv[-1] = pow(fact[-1],P-2,P)
for i in range(C-2,0,-1):
    fact_inv[i] = fact_inv[i+1] * (i+1) % P
def comb(n,k):
    return fact[n] * fact_inv[k] % P * fact_inv[n-k] % P
for i in range(N):
    k = i + 1
    ans = k * fact[k] * fact[N -k  + 1] % P * comb(N+1,k+1) % P
    print(ans)
0