結果

問題 No.2137 Stairs of Permutation
ユーザー SSRSSSRS
提出日時 2022-11-25 22:55:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 172,284 KB
実行使用メモリ 393,968 KB
最終ジャッジ日時 2024-10-02 05:28:22
合計ジャッジ時間 8,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 96 ms
67,712 KB
testcase_03 AC 410 ms
276,976 KB
testcase_04 AC 300 ms
229,888 KB
testcase_05 AC 228 ms
177,364 KB
testcase_06 AC 520 ms
366,592 KB
testcase_07 AC 527 ms
386,672 KB
testcase_08 AC 50 ms
44,288 KB
testcase_09 AC 24 ms
21,636 KB
testcase_10 AC 64 ms
58,352 KB
testcase_11 AC 473 ms
349,964 KB
testcase_12 AC 143 ms
133,888 KB
testcase_13 AC 285 ms
189,312 KB
testcase_14 AC 361 ms
280,064 KB
testcase_15 AC 540 ms
386,816 KB
testcase_16 AC 146 ms
128,964 KB
testcase_17 AC 119 ms
113,408 KB
testcase_18 AC 206 ms
174,720 KB
testcase_19 AC 163 ms
145,024 KB
testcase_20 AC 103 ms
96,400 KB
testcase_21 AC 537 ms
381,244 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 534 ms
393,968 KB
testcase_24 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int N;
  cin >> N;
  vector<vector<long long>> dp(4, vector<long long>(N + 1, 0));
  dp[0][0] = 1;
  for (int i = 0; i < N; i++){
    for (int j = 0; j < 4; j++){
      dp[j][i + 1] += dp[j][i] * (i + 1) % MOD;
      dp[j][i + 1] %= MOD;
      if (j < 3){
        dp[j + 1][i + 1] += dp[j][i];
        dp[j + 1][i + 1] %= MOD;
      }
    }
  }
  cout << (dp[1][N] + dp[2][N] * 6 + dp[3][N] * 6) % MOD << endl;
}
0