結果

問題 No.2137 Stairs of Permutation
ユーザー 👑 chro_96chro_96
提出日時 2022-11-26 00:17:14
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-10 05:03:25
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1 ms
6,944 KB
testcase_23 WA -
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;
  }
  
  printf("%lld\n", ans3%mod_num);
  return 0;
}
0