結果
問題 | No.1772 Many DELETEQs |
ユーザー | Kude |
提出日時 | 2021-12-03 05:53:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 190 ms / 3,500 ms |
コード長 | 1,125 bytes |
コンパイル時間 | 2,773 ms |
コンパイル使用メモリ | 225,264 KB |
実行使用メモリ | 66,112 KB |
最終ジャッジ日時 | 2024-07-05 09:37:11 |
合計ジャッジ時間 | 4,771 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
65,860 KB |
testcase_01 | AC | 117 ms
65,868 KB |
testcase_02 | AC | 119 ms
65,856 KB |
testcase_03 | AC | 190 ms
66,112 KB |
testcase_04 | AC | 184 ms
65,876 KB |
testcase_05 | AC | 186 ms
66,048 KB |
testcase_06 | AC | 166 ms
65,920 KB |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic pop using namespace std; using namespace atcoder; #define rep(i,n)for (int i = 0; i < int(n); ++i) #define rrep(i,n)for (int i = int(n)-1; i >= 0; --i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() template<class T> void chmax(T& a, const T& b) { a = max(a, b); } template<class T> void chmin(T& a, const T& b) { a = min(a, b); } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; using mint = modint998244353; constexpr int MX = 4002; mint dp[MX][MX]; } int main() { ios::sync_with_stdio(false); cin.tie(0); dp[0][0] = 1; rep(i, MX - 1) rep(j, MX - 1) { mint v = dp[i][j]; dp[i + 1][j] += v; dp[i][j + 1] += v; dp[i + 1][j + 1] += 2 * v; } rep(i, MX - 1) rep(j, MX - 1) dp[i + 1][j + 1] += dp[i][j]; int q; cin >> q; while(q--) { int x, y; cin >> x >> y; cout << dp[x][y].val() << '\n'; } }