結果

問題 No.1492 01文字列と転倒
ユーザー umezoumezo
提出日時 2021-04-30 23:50:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,409 ms / 4,000 ms
コード長 562 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 200,128 KB
実行使用メモリ 436,736 KB
最終ジャッジ日時 2024-07-19 04:00:27
合計ジャッジ時間 14,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1,409 ms
436,736 KB
testcase_03 AC 1,289 ms
405,248 KB
testcase_04 AC 1,195 ms
375,168 KB
testcase_05 AC 1,012 ms
320,000 KB
testcase_06 AC 1,039 ms
333,184 KB
testcase_07 AC 1,129 ms
360,832 KB
testcase_08 AC 1,404 ms
436,736 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1,067 ms
333,184 KB
testcase_15 AC 6 ms
5,504 KB
testcase_16 AC 28 ms
13,696 KB
testcase_17 AC 1,021 ms
320,000 KB
testcase_18 AC 29 ms
14,592 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 21 ms
11,392 KB
testcase_21 AC 865 ms
271,232 KB
testcase_22 AC 28 ms
13,696 KB
testcase_23 AC 15 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

ll dp[210][110][10010];

int main(){
  ll n,m;
  cin>>n>>m;
  
  dp[0][0][0]=1;
  for(int i=0;i<2*n;i++){
    for(int j=0;j<=i/2;j++){
      int t=(i/2)*(i/2);
      for(int k=0;k<=t;k++){
        if(k+j<=n*n) dp[i+1][j][k+j]=(dp[i+1][j][k+j]+dp[i][j][k])%m;
        if(i>=2*j+1) dp[i+1][j+1][k]=(dp[i+1][j+1][k]+dp[i][j][k])%m;
      }
    }
  }
  for(int k=0;k<=n*n;k++) cout<<dp[2*n][n][k]<<endl;

  return 0;
}
0