結果
問題 | No.1754 T-block Tiling |
ユーザー | a01sa01to |
提出日時 | 2024-12-06 00:21:28 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 576 bytes |
コンパイル時間 | 2,740 ms |
コンパイル使用メモリ | 247,000 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-06 00:21:32 |
合計ジャッジ時間 | 3,449 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; #include <atcoder/modint> using mint = atcoder::modint998244353; int main() { vector<mint> dp(1001, 0); dp[1] = 2; for (int i = 2; i <= 1000; ++i) { dp[i] = 2; for (int j = 1; j < i; ++j) dp[i] += 2 * dp[j]; } int t; cin >> t; while (t--) { int n; cin >> n; cout << dp[n].val() << endl; } return 0; }