結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー 👑 rin204rin204
提出日時 2024-05-10 21:49:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 76,308 KB
最終ジャッジ日時 2024-12-20 05:05:59
合計ジャッジ時間 4,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,524 KB
testcase_01 AC 41 ms
52,188 KB
testcase_02 AC 40 ms
53,156 KB
testcase_03 AC 40 ms
52,684 KB
testcase_04 AC 41 ms
53,032 KB
testcase_05 AC 41 ms
52,512 KB
testcase_06 AC 42 ms
52,824 KB
testcase_07 AC 39 ms
53,220 KB
testcase_08 AC 41 ms
53,444 KB
testcase_09 AC 41 ms
53,160 KB
testcase_10 AC 41 ms
52,828 KB
testcase_11 AC 40 ms
52,836 KB
testcase_12 AC 40 ms
52,580 KB
testcase_13 AC 40 ms
53,080 KB
testcase_14 AC 42 ms
52,924 KB
testcase_15 AC 40 ms
52,400 KB
testcase_16 AC 40 ms
52,548 KB
testcase_17 AC 41 ms
52,732 KB
testcase_18 AC 41 ms
52,332 KB
testcase_19 AC 39 ms
52,272 KB
testcase_20 AC 294 ms
76,140 KB
testcase_21 AC 447 ms
76,136 KB
testcase_22 AC 446 ms
76,292 KB
testcase_23 AC 453 ms
75,872 KB
testcase_24 AC 439 ms
76,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

inv = pow(25, -1, MOD)
for _ in range(int(input())):
    n = int(input())
    ans = (pow(26, n + 1, MOD) - 1) * inv % MOD
    print(ans - 1)
0