結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー hiromi_ayasehiromi_ayase
提出日時 2024-05-10 21:44:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 4,767 ms
コンパイル使用メモリ 307,868 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-10 21:44:16
合計ジャッジ時間 7,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 114 ms
6,944 KB
testcase_21 AC 188 ms
6,944 KB
testcase_22 AC 200 ms
6,944 KB
testcase_23 AC 191 ms
6,944 KB
testcase_24 AC 200 ms
6,940 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