結果

問題 No.1492 01文字列と転倒
ユーザー se1ka2se1ka2
提出日時 2021-04-30 21:40:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 642 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 65,152 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-07-19 00:55:03
合計ジャッジ時間 7,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
19,328 KB
testcase_01 AC 26 ms
19,584 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 30 ms
19,456 KB
testcase_10 AC 21 ms
19,328 KB
testcase_11 AC 25 ms
19,584 KB
testcase_12 AC 26 ms
19,456 KB
testcase_13 AC 23 ms
19,456 KB
testcase_14 RE -
testcase_15 AC 53 ms
19,456 KB
testcase_16 AC 132 ms
19,328 KB
testcase_17 RE -
testcase_18 AC 138 ms
19,328 KB
testcase_19 AC 44 ms
19,456 KB
testcase_20 AC 105 ms
19,456 KB
testcase_21 RE -
testcase_22 AC 134 ms
19,456 KB
testcase_23 AC 88 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

ll dp[10002][102];
ll d[10002][102];

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