結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー rlangevinrlangevin
提出日時 2024-05-10 21:40:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 189 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 253,148 KB
最終ジャッジ日時 2024-12-20 04:45:17
合計ジャッジ時間 35,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,844 KB
testcase_01 AC 36 ms
242,692 KB
testcase_02 AC 36 ms
60,312 KB
testcase_03 AC 38 ms
253,148 KB
testcase_04 AC 36 ms
60,100 KB
testcase_05 AC 40 ms
249,008 KB
testcase_06 AC 39 ms
59,004 KB
testcase_07 AC 39 ms
237,016 KB
testcase_08 AC 37 ms
59,340 KB
testcase_09 AC 38 ms
244,008 KB
testcase_10 AC 40 ms
60,420 KB
testcase_11 AC 41 ms
249,932 KB
testcase_12 AC 38 ms
60,188 KB
testcase_13 AC 41 ms
245,516 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
input = sys.stdin.readline

mod = 998244353
inv = pow(25, mod - 2, mod)
T = int(input())
for i in range(T):
    N = int(input())
    print((pow(26, N + 1) - 26) * inv % mod)
    
0