結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー detteiuudetteiuu
提出日時 2024-05-10 23:36:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-12-20 07:51:36
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,940 KB
testcase_01 AC 40 ms
52,092 KB
testcase_02 AC 40 ms
53,148 KB
testcase_03 AC 39 ms
53,840 KB
testcase_04 AC 39 ms
52,828 KB
testcase_05 AC 38 ms
52,252 KB
testcase_06 AC 38 ms
52,464 KB
testcase_07 AC 37 ms
51,944 KB
testcase_08 AC 38 ms
53,152 KB
testcase_09 AC 38 ms
52,240 KB
testcase_10 AC 38 ms
53,612 KB
testcase_11 AC 38 ms
52,540 KB
testcase_12 AC 38 ms
52,348 KB
testcase_13 AC 38 ms
52,620 KB
testcase_14 AC 37 ms
52,208 KB
testcase_15 AC 38 ms
53,212 KB
testcase_16 AC 38 ms
52,876 KB
testcase_17 AC 38 ms
52,344 KB
testcase_18 AC 37 ms
52,460 KB
testcase_19 AC 37 ms
53,252 KB
testcase_20 AC 361 ms
76,264 KB
testcase_21 AC 559 ms
76,308 KB
testcase_22 AC 560 ms
76,444 KB
testcase_23 AC 569 ms
76,672 KB
testcase_24 AC 541 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def inverse(n, d):
    return n * pow(d, MOD-2, MOD) % MOD

MOD = 998244353
for _ in range(T):
    L = int(input())
    print((pow(26, L+1, MOD)-26)*inverse(1, 25)%MOD)
0