結果

問題 No.1771 A DELETEQ
ユーザー chocoruskchocorusk
提出日時 2021-12-19 17:17:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 3,500 ms
コード長 968 bytes
コンパイル時間 3,496 ms
コンパイル使用メモリ 189,172 KB
実行使用メモリ 74,284 KB
最終ジャッジ日時 2024-09-15 14:40:15
合計ジャッジ時間 34,343 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
72,704 KB
testcase_01 AC 42 ms
72,704 KB
testcase_02 AC 114 ms
74,284 KB
testcase_03 AC 43 ms
67,412 KB
testcase_04 AC 116 ms
67,232 KB
testcase_05 AC 113 ms
67,108 KB
testcase_06 AC 47 ms
67,172 KB
testcase_07 AC 51 ms
67,200 KB
testcase_08 AC 49 ms
67,200 KB
testcase_09 AC 60 ms
67,072 KB
testcase_10 AC 59 ms
67,072 KB
testcase_11 AC 56 ms
67,072 KB
testcase_12 AC 55 ms
67,072 KB
testcase_13 AC 57 ms
67,072 KB
testcase_14 AC 74 ms
67,200 KB
testcase_15 AC 83 ms
67,200 KB
testcase_16 AC 84 ms
67,200 KB
testcase_17 AC 52 ms
67,072 KB
testcase_18 AC 62 ms
67,200 KB
testcase_19 AC 50 ms
67,072 KB
testcase_20 AC 74 ms
67,328 KB
testcase_21 AC 52 ms
67,072 KB
testcase_22 AC 58 ms
67,200 KB
testcase_23 AC 61 ms
67,200 KB
testcase_24 AC 52 ms
67,200 KB
testcase_25 AC 50 ms
67,072 KB
testcase_26 AC 69 ms
67,200 KB
testcase_27 AC 56 ms
67,072 KB
testcase_28 AC 51 ms
67,072 KB
evil_hand_1.txt TLE -
evil_hand_2.txt RE -
evil_hand_3.txt RE -
evil_random_1.txt RE -
evil_random_2.txt TLE -
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 <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint998244353;
mint dp[4040][4040];
int main()
{
    int x, y;cin>>x>>y;
  dp[0][0]=1;
  for(int i=0; i<=x; i++){
    for(int j=0; j<=y; j++){
      dp[i+1][j]+=dp[i][j];
      dp[i][j+1]+=dp[i][j];
      dp[i+1][j+1]+=2*dp[i][j];
    }
  }
  mint ans=0;
  for(int i=0; i<=min(x,y);i++){
    ans+=dp[x-i][y-i];
  }
  cout<<ans.val()<<endl;
    return 0;
}
0