結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー mottchanmottchan
提出日時 2024-05-10 23:48:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 651 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 70,436 KB
最終ジャッジ日時 2024-05-10 23:49:00
合計ジャッジ時間 4,825 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,544 KB
testcase_01 AC 42 ms
56,200 KB
testcase_02 AC 44 ms
56,988 KB
testcase_03 AC 42 ms
55,360 KB
testcase_04 AC 41 ms
56,012 KB
testcase_05 AC 43 ms
55,936 KB
testcase_06 AC 41 ms
55,900 KB
testcase_07 AC 41 ms
56,556 KB
testcase_08 AC 40 ms
56,288 KB
testcase_09 AC 42 ms
56,336 KB
testcase_10 AC 41 ms
56,344 KB
testcase_11 AC 42 ms
56,588 KB
testcase_12 AC 43 ms
55,292 KB
testcase_13 AC 50 ms
62,360 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

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