結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー Yakumo221Yakumo221
提出日時 2024-05-10 21:47:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,364 KB
最終ジャッジ日時 2024-05-10 21:47:18
合計ジャッジ時間 5,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,196 KB
testcase_01 AC 42 ms
51,956 KB
testcase_02 AC 36 ms
52,640 KB
testcase_03 AC 37 ms
53,356 KB
testcase_04 AC 38 ms
51,992 KB
testcase_05 AC 40 ms
53,812 KB
testcase_06 AC 42 ms
51,812 KB
testcase_07 AC 42 ms
52,636 KB
testcase_08 AC 41 ms
52,556 KB
testcase_09 AC 44 ms
51,756 KB
testcase_10 AC 40 ms
52,204 KB
testcase_11 AC 41 ms
52,228 KB
testcase_12 AC 43 ms
51,892 KB
testcase_13 AC 43 ms
52,340 KB
testcase_14 AC 44 ms
52,376 KB
testcase_15 AC 43 ms
52,792 KB
testcase_16 AC 43 ms
52,328 KB
testcase_17 AC 43 ms
52,432 KB
testcase_18 AC 43 ms
52,240 KB
testcase_19 AC 44 ms
52,628 KB
testcase_20 AC 370 ms
75,988 KB
testcase_21 AC 559 ms
76,364 KB
testcase_22 AC 602 ms
76,284 KB
testcase_23 AC 535 ms
76,128 KB
testcase_24 AC 558 ms
76,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

t = int(input())
while t:
    t -= 1

    n = int(input())

    ans = (pow(26, n+1, MOD) - 1) * pow(25, MOD-2, MOD) - 1
    ans %= MOD
    print(ans)
0