結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー Spica08Spica08
提出日時 2024-05-10 22:21:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 1,016 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 204,228 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-10 22:21:47
合計ジャッジ時間 5,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 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,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 225 ms
6,940 KB
testcase_21 AC 408 ms
6,940 KB
testcase_22 AC 383 ms
6,940 KB
testcase_23 AC 389 ms
6,944 KB
testcase_24 AC 388 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using Matrix = vector<vector<ll>>;
const int inf = 1000000000;
const ll INF = 1000000000000000000;
const ll mod = 998244353;
const ull mod_hash = (1UL << 61) - 1;
const vector<int> dx = {0, 1, 0, -1, 1, 1, -1, -1};
const vector<int> dy = {1, 0, -1, 0, 1, -1, 1, -1};

ll extGCD(ll a, ll b, ll &x, ll &y) {
  if (b == 0) {
    x = 1;
    y = 0;
    return a;
  }
  ll d = extGCD(b, a % b, x, y);
  swap(x, y);
  y -= a / b * x;
  return d;
}

ll modinv(ll a, ll m) {
  ll x, y;
  extGCD(a, m, x, y);
  if (x < 0) x += m;
  return x % m;
}

ll modpow(ll a, ll n, ll m) {
  if (n == 0) return 1;
  if (n == 1) return a % m;
  if (n % 2 == 0) {
    ll t = modpow(a, n / 2, m);
    return (t * t) % m;
  } else {
    return modpow(a, n - 1, m) * a % m;
  }
}

int main(){
  int T;cin>>T;
  while(T--){
    ll l;cin>>l;
    cout<<26 * ((modpow(26, l, mod) - 1) + mod) % mod * modinv(25, mod) % mod<<endl;
  }
  return 0;
}
0