結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,956 KB
testcase_01 AC 37 ms
52,192 KB
testcase_02 AC 39 ms
52,612 KB
testcase_03 AC 36 ms
51,992 KB
testcase_04 AC 36 ms
52,916 KB
testcase_05 AC 35 ms
52,272 KB
testcase_06 AC 37 ms
52,408 KB
testcase_07 AC 40 ms
52,696 KB
testcase_08 AC 37 ms
52,284 KB
testcase_09 AC 36 ms
51,676 KB
testcase_10 AC 36 ms
52,228 KB
testcase_11 AC 36 ms
52,628 KB
testcase_12 AC 37 ms
52,344 KB
testcase_13 AC 36 ms
52,152 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
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