結果

問題 No.2391 SAN 値チェック
ユーザー sotanishysotanishy
提出日時 2023-07-22 00:29:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-09-22 01:46:17
合計ジャッジ時間 5,418 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 300 ms
83,072 KB
testcase_04 AC 185 ms
79,232 KB
testcase_05 AC 263 ms
81,792 KB
testcase_06 AC 155 ms
78,464 KB
testcase_07 AC 156 ms
78,592 KB
testcase_08 AC 105 ms
71,296 KB
testcase_09 AC 147 ms
78,208 KB
testcase_10 AC 222 ms
80,896 KB
testcase_11 AC 65 ms
65,152 KB
testcase_12 AC 357 ms
84,608 KB
testcase_13 AC 360 ms
85,248 KB
testcase_14 AC 368 ms
84,864 KB
testcase_15 AC 372 ms
84,864 KB
testcase_16 AC 366 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 998244353
N = int(input())
ans = [0] * (N+1)
f = 1
for i in range(N+1):
    ans[N-i] = (-1) ** i * pow(N-i, i, mod) * pow(f, mod-2, mod) % mod
    f = f * (i + 1) % mod

print(*ans, sep="\n")
0