結果
問題 | No.1755 Almost Palindrome |
ユーザー | tnakao0123 |
提出日時 | 2021-11-29 16:22:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 1,256 bytes |
コンパイル時間 | 378 ms |
コンパイル使用メモリ | 42,820 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-07-02 12:43:25 |
合計ジャッジ時間 | 1,131 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
8,960 KB |
testcase_01 | AC | 18 ms
8,832 KB |
testcase_02 | AC | 46 ms
8,960 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1755.cc: No.1755 Almost Palindrome - yukicoder */ #include<cstdio> #include<algorithm> using namespace std; /* constant */ const int MAX_N = 1000000; const int MAX_M = (MAX_N + 1) / 2; 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 es[MAX_M + 1], dp[MAX_N + 1]; /* subroutines */ /* main */ int main() { es[0] = 1; for (int i = 0; i < MAX_M; i++) es[i + 1] = es[i] * 26; dp[0] = dp[1] = 0; dp[2] = 650; for (int i = 3; i <= MAX_N; i++) dp[i] = dp[i - 2] * 26 + mi(650) * (es[i / 2 - 1] * 2 - (! (i & 1) ? 1 : 0)); int tn; scanf("%d", &tn); while (tn--) { int n; scanf("%d", &n); printf("%d\n", dp[n].v); } return 0; }