結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー mottchanmottchan
提出日時 2024-05-10 23:48:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 651 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-12-20 08:01:21
合計ジャッジ時間 35,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,444 KB
testcase_01 AC 32 ms
21,504 KB
testcase_02 AC 32 ms
17,696 KB
testcase_03 AC 31 ms
21,504 KB
testcase_04 AC 34 ms
17,700 KB
testcase_05 AC 33 ms
21,632 KB
testcase_06 AC 32 ms
17,444 KB
testcase_07 AC 33 ms
21,376 KB
testcase_08 AC 33 ms
17,572 KB
testcase_09 AC 32 ms
21,504 KB
testcase_10 AC 31 ms
17,444 KB
testcase_11 AC 33 ms
21,632 KB
testcase_12 AC 32 ms
17,444 KB
testcase_13 AC 57 ms
21,632 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

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