結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー Mottchan
提出日時 2024-05-10 23:48:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 651 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 124,320 KB
最終ジャッジ日時 2024-12-20 08:01:58
合計ジャッジ時間 35,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14 TLE * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
sys.set_int_max_str_digits(0)
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd, lcm, factorial, perm, comb
from itertools import product, permutations, combinations
from functools import lru_cache #@lru_cache(maxsize=128)
#重複あり:list(product(list('123'),repeat = 2)),重複なし:list(permutations(list('123')))
MOD = 998244353

q = int(input())
for i in range(q):
    n = int(input())
    s = 0
    for i in range(1,n+1):
        s += pow(26,i,MOD)
    print(s%MOD)
0