結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー hiromi_ayasehiromi_ayase
提出日時 2024-05-10 21:44:07
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 5,335 ms
コンパイル使用メモリ 309,348 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-20 04:52:27
合計ジャッジ時間 7,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 119 ms
6,816 KB
testcase_21 AC 198 ms
6,816 KB
testcase_22 AC 196 ms
6,820 KB
testcase_23 AC 197 ms
6,816 KB
testcase_24 AC 191 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/all>
using namespace std;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
#define FAST_IO                \
  ios::sync_with_stdio(false); \
  cin.tie(0);
const i64 INF = 1001001001001001001;
using Modint = atcoder::static_modint<998244353>;

void solve(i64 L) {
  Modint x = 26;
  // ans = x^1 + x^2 + ... + x^L
  //    = (x^(L + 1) - 1) / (x - 1)

  Modint ans = (x.pow(L + 1) - 1) / (x - 1) - 1;
  cout << ans.val() << endl;
}

int main() {
  FAST_IO
  auto ans = 0LL;

  int T;
  cin >> T;

  for (int i = 0; i < T; i ++) {
    i64 L;
    cin >> L;
    solve(L);
  }

}
0