結果
問題 | No.2137 Stairs of Permutation |
ユーザー |
![]() |
提出日時 | 2022-11-26 00:21:52 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 71 ms / 2,000 ms |
コード長 | 704 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 06:39:16 |
合計ジャッジ時間 | 1,786 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
#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; fact *= (long long)i; fact %= mod_num; } printf("%lld\n", ans3%mod_num); return 0; }