結果
問題 | No.1754 T-block Tiling |
ユーザー | tnakao0123 |
提出日時 | 2021-11-26 19:08:35 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,135 bytes |
コンパイル時間 | 597 ms |
コンパイル使用メモリ | 41,988 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 15:05:08 |
合計ジャッジ時間 | 1,025 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1754.cc: No.1754 T-block Tiling - yukicoder */ #include<cstdio> #include<algorithm> using namespace std; /* constant */ const int MAX_N = 100; const int MOD = 998244353; /* typedef */ template<const int MOD> struct MI { int v; MI(): v() {} MI(int _v): v(_v % MOD) {} MI(long long _v): v(_v % MOD) {} MI operator+(const MI m) const { return MI(v + m.v); } MI operator-(const MI m) const { return MI(v + MOD - m.v); } MI operator*(const MI m) const { return MI((long long)v * m.v); } MI &operator+=(const MI m) { return (*this = *this + m); } MI &operator-=(const MI m) { return (*this = *this - m); } MI &operator*=(const MI m) { return (*this = *this * m); } }; typedef MI<MOD> mi; /* global variables */ mi dp[MAX_N + 1][2]; /* subroutines */ /* main */ int main() { dp[0][0] = 1, dp[0][1] = 0; for (int i = 0; i < MAX_N; i++) { dp[i + 1][0] = dp[i][0] * 2 + dp[i][1] * 1; dp[i + 1][1] = dp[i][0] * 2 + dp[i][1] * 1; } int tn; scanf("%d", &tn); while (tn--) { int n; scanf("%d", &n); printf("%d\n", dp[n][0].v); } return 0; }