結果

問題 No.1621 Sequence Inversions
ユーザー V_MelvilleV_Melville
提出日時 2021-07-30 11:46:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 500 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 71,680 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 07:31:19
合計ジャッジ時間 1,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
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 AC 3 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 3 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
const int N = 1e3+10,mod = 998244353;
typedef long long LL;
LL f[N][N];
LL sum[N];
int main(){
 int n,m;
 scanf("%d%d",&n,&m);
 f[1][0]=1;
 for(int i=2;i<=n;i++){
  sum[0]=f[i-1][0];
  for(int j=0;j<=m;j++){
   sum[j]=(sum[j-1]+f[i-1][j])%mod;
  }
  for(int j=0;j<=m;j++){
   int last=j-(i-1)-1;
   f[i][j]+=sum[j];
   if(last>=0)f[i][j]=(f[i][j]-sum[last]+mod)%mod;
   f[i][j]%=mod;
  }
  
 }
 cout<<f[n][m];
 return 0;
}
0