結果

問題 No.2585 How many "Who is Santa?"
ユーザー ntudantuda
提出日時 2023-12-24 21:59:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,225 ms
コード長 178 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 53,960 KB
最終ジャッジ日時 2024-09-27 13:49:09
合計ジャッジ時間 2,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N = int(input())
if N == 2:
    print(0)
elif N == 3:
    print(24)
else:
    ans = N * (pow(N-1,N,MOD) - (N-1) * pow(N-3,N-2,MOD))
    ans %= MOD
    print(ans)
0