結果
問題 |
No.2137 Stairs of Permutation
|
ユーザー |
![]() |
提出日時 | 2022-11-26 00:17:14 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 657 bytes |
コンパイル時間 | 274 ms |
コンパイル使用メモリ | 28,928 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-10-02 06:34:32 |
合計ジャッジ時間 | 2,034 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | AC * 2 WA * 21 |
ソースコード
#include <stdio.h> int main () { int n = 0; int res = 0; long long mod_num = 998244353LL; long long ans1 = 1LL; long long ans2 = 1LL; long long ans3 = 1LL; long long fact = 1LL; res = scanf("%d", &n); for (int i = 2; i <= n; i++) { long long tmp1 = ans1+fact; long long tmp2 = ans2+2LL*ans1+fact; long long tmp3 = ans3+3LL*ans2+3LL*ans1+fact; ans1 *= (long long) (i-1); ans2 *= (long long) (i-1); ans3 *= (long long) (i-1); ans1 += tmp1; ans2 += tmp2; ans3 += tmp3; ans1 %= mod_num; ans2 %= mod_num; ans3 %= mod_num; } printf("%lld\n", ans3%mod_num); return 0; }