結果

問題 No.2137 Stairs of Permutation
ユーザー chro_96chro_96
提出日時 2022-11-26 00:21:52
言語 C
(gcc 12.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 12 ms
5,248 KB
testcase_03 AC 50 ms
5,248 KB
testcase_04 AC 43 ms
5,248 KB
testcase_05 AC 33 ms
5,248 KB
testcase_06 AC 66 ms
5,248 KB
testcase_07 AC 69 ms
5,248 KB
testcase_08 AC 8 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 11 ms
5,248 KB
testcase_11 AC 63 ms
5,248 KB
testcase_12 AC 24 ms
5,248 KB
testcase_13 AC 33 ms
5,248 KB
testcase_14 AC 50 ms
5,248 KB
testcase_15 AC 69 ms
5,248 KB
testcase_16 AC 24 ms
5,248 KB
testcase_17 AC 21 ms
5,248 KB
testcase_18 AC 32 ms
5,248 KB
testcase_19 AC 26 ms
5,248 KB
testcase_20 AC 18 ms
5,248 KB
testcase_21 AC 68 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 71 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0