結果

問題 No.1771 A DELETEQ
ユーザー pockynypockyny
提出日時 2021-12-03 19:35:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,355 ms / 3,500 ms
コード長 1,123 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 69,248 KB
実行使用メモリ 504,960 KB
最終ジャッジ日時 2024-07-06 01:46:07
合計ジャッジ時間 10,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1,355 ms
504,960 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1,352 ms
504,832 KB
testcase_05 AC 1,317 ms
502,656 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 19 ms
19,712 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 222 ms
89,728 KB
testcase_10 AC 205 ms
80,384 KB
testcase_11 AC 147 ms
57,984 KB
testcase_12 AC 119 ms
53,504 KB
testcase_13 AC 163 ms
72,448 KB
testcase_14 AC 459 ms
182,912 KB
testcase_15 AC 645 ms
254,208 KB
testcase_16 AC 648 ms
259,712 KB
testcase_17 AC 48 ms
27,392 KB
testcase_18 AC 215 ms
87,296 KB
testcase_19 AC 15 ms
8,704 KB
testcase_20 AC 441 ms
177,664 KB
testcase_21 AC 63 ms
31,360 KB
testcase_22 AC 155 ms
65,920 KB
testcase_23 AC 215 ms
92,160 KB
testcase_24 AC 48 ms
22,784 KB
testcase_25 AC 24 ms
12,928 KB
testcase_26 AC 387 ms
155,520 KB
testcase_27 AC 131 ms
54,400 KB
testcase_28 AC 34 ms
17,024 KB
evil_hand_1.txt RE -
evil_hand_2.txt RE -
evil_hand_3.txt RE -
evil_random_1.txt RE -
evil_random_2.txt RE -
evil_random_3.txt RE -
evil_random_4.txt RE -
evil_random_5.txt RE -
evil_random_6.txt RE -
evil_random_7.txt RE -
evil_random_8.txt RE -
evil_random_9.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
typedef long long ll;
ll dp[4010][4010][2][2] = {},mod = 998244353;
int main(){
    int i,j,x,y; cin >> x >> y;
    if(x>4000 || y>4000) exit(1);
    dp[0][0][0][1] = dp[0][0][1][1] = 1;
    for(i=0;i<=x;i++){
        for(j=0;j<=y;j++){
            (dp[i + 1][j][0][0] += dp[i][j][0][0] + dp[i][j][0][1]) %= mod;
            (dp[i][j + 1][1][0] += dp[i][j][0][0] + dp[i][j][0][1]) %= mod;
            (dp[i][j + 1][1][1] += dp[i][j][0][0]) %= mod;
            (dp[i][j + 1][1][0] += dp[i][j][1][0] + dp[i][j][1][1]) %= mod;
            (dp[i + 1][j][0][0] += dp[i][j][1][0] + dp[i][j][1][1]) %= mod;
            (dp[i + 1][j][0][1] += dp[i][j][1][0]) %= mod;
        }
    }
    ll ans = 0;
    for(i=0;i<=min(x,y);i++) (ans += dp[x - i][y - i][0][0] + dp[x - i][y - i][0][1] + dp[x - i][y - i][1][0] + dp[x - i][y - i][1][1]) %= mod;
    (ans *= (mod + 1)/2) %= mod;
    cout << ans << endl;
    /*for(i=0;i<=min(x,y);i++){
        cout << dp[x - i][y - i][0][0] << " " << dp[x - i][y - i][0][1] << " " << dp[x - i][y - i][1][0] << " " << dp[x - i][y - i][1][1] << endl;
    }*/
}
0