結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2024-05-10 23:04:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 515 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 76,376 KB
最終ジャッジ日時 2024-05-10 23:05:01
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,700 KB
testcase_01 AC 35 ms
52,324 KB
testcase_02 AC 35 ms
52,492 KB
testcase_03 AC 33 ms
52,124 KB
testcase_04 AC 32 ms
51,944 KB
testcase_05 AC 33 ms
52,804 KB
testcase_06 AC 33 ms
53,132 KB
testcase_07 AC 34 ms
53,008 KB
testcase_08 AC 38 ms
52,376 KB
testcase_09 AC 33 ms
52,728 KB
testcase_10 AC 32 ms
52,124 KB
testcase_11 AC 32 ms
52,836 KB
testcase_12 AC 33 ms
52,456 KB
testcase_13 AC 32 ms
53,356 KB
testcase_14 AC 32 ms
52,276 KB
testcase_15 AC 31 ms
52,728 KB
testcase_16 AC 34 ms
52,944 KB
testcase_17 AC 33 ms
52,228 KB
testcase_18 AC 33 ms
52,428 KB
testcase_19 AC 33 ms
52,280 KB
testcase_20 AC 334 ms
76,176 KB
testcase_21 AC 485 ms
76,224 KB
testcase_22 AC 487 ms
76,252 KB
testcase_23 AC 515 ms
76,128 KB
testcase_24 AC 481 ms
76,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
t = int(input())
for _ in range(t):
    l = int(input())

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