結果
問題 | No.2752 文字列の数え上げ mod 998244353 |
ユーザー |
|
提出日時 | 2024-05-10 23:48:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 651 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,632 KB |
最終ジャッジ日時 | 2024-12-20 08:01:21 |
合計ジャッジ時間 | 35,081 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 TLE * 11 |
ソースコード
import syssys.setrecursionlimit(5*10**5)input = sys.stdin.readlinesys.set_int_max_str_digits(0)from collections import defaultdict, deque, Counterfrom heapq import heappop, heappushfrom bisect import bisect_left, bisect_rightfrom math import gcd, lcm, factorial, perm, combfrom itertools import product, permutations, combinationsfrom functools import lru_cache #@lru_cache(maxsize=128)#重複あり:list(product(list('123'),repeat = 2)),重複なし:list(permutations(list('123')))MOD = 998244353q = int(input())for i in range(q):n = int(input())s = 0for i in range(1,n+1):s += pow(26,i,MOD)print(s%MOD)