結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー pitPpitP
提出日時 2024-05-10 21:51:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 76,508 KB
最終ジャッジ日時 2024-05-10 21:51:37
合計ジャッジ時間 5,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,488 KB
testcase_01 AC 36 ms
51,940 KB
testcase_02 AC 36 ms
53,120 KB
testcase_03 AC 40 ms
53,008 KB
testcase_04 AC 36 ms
52,152 KB
testcase_05 AC 37 ms
52,892 KB
testcase_06 AC 37 ms
52,564 KB
testcase_07 AC 36 ms
52,072 KB
testcase_08 AC 37 ms
52,332 KB
testcase_09 AC 37 ms
52,756 KB
testcase_10 AC 37 ms
52,040 KB
testcase_11 AC 37 ms
53,124 KB
testcase_12 AC 44 ms
52,668 KB
testcase_13 AC 37 ms
53,352 KB
testcase_14 AC 36 ms
52,400 KB
testcase_15 AC 37 ms
52,616 KB
testcase_16 AC 37 ms
51,940 KB
testcase_17 AC 44 ms
52,088 KB
testcase_18 AC 37 ms
52,416 KB
testcase_19 AC 36 ms
52,364 KB
testcase_20 AC 375 ms
76,132 KB
testcase_21 AC 593 ms
76,324 KB
testcase_22 AC 616 ms
76,108 KB
testcase_23 AC 588 ms
75,984 KB
testcase_24 AC 616 ms
76,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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