結果

問題 No.2137 Stairs of Permutation
ユーザー 👑 chro_96chro_96
提出日時 2022-11-26 00:21:52
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-10 05:07:26
合計ジャッジ時間 1,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 13 ms
6,944 KB
testcase_03 AC 49 ms
6,940 KB
testcase_04 AC 40 ms
6,940 KB
testcase_05 AC 31 ms
6,940 KB
testcase_06 AC 65 ms
6,940 KB
testcase_07 AC 70 ms
6,944 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 62 ms
6,940 KB
testcase_12 AC 24 ms
6,940 KB
testcase_13 AC 34 ms
6,944 KB
testcase_14 AC 51 ms
6,944 KB
testcase_15 AC 68 ms
6,944 KB
testcase_16 AC 22 ms
6,940 KB
testcase_17 AC 20 ms
6,944 KB
testcase_18 AC 30 ms
6,940 KB
testcase_19 AC 26 ms
6,940 KB
testcase_20 AC 17 ms
6,940 KB
testcase_21 AC 67 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 68 ms
6,944 KB
testcase_24 AC 1 ms
6,944 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