結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー FromBooskaFromBooska
提出日時 2024-05-10 22:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,668 KB
最終ジャッジ日時 2024-05-10 22:57:54
合計ジャッジ時間 4,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,616 KB
testcase_01 AC 35 ms
51,940 KB
testcase_02 AC 33 ms
52,152 KB
testcase_03 AC 33 ms
52,552 KB
testcase_04 AC 31 ms
52,144 KB
testcase_05 AC 34 ms
53,540 KB
testcase_06 AC 35 ms
52,216 KB
testcase_07 AC 34 ms
53,240 KB
testcase_08 AC 32 ms
52,364 KB
testcase_09 AC 32 ms
53,000 KB
testcase_10 AC 31 ms
52,668 KB
testcase_11 AC 33 ms
51,924 KB
testcase_12 AC 33 ms
53,468 KB
testcase_13 AC 35 ms
52,000 KB
testcase_14 AC 34 ms
52,300 KB
testcase_15 AC 37 ms
53,772 KB
testcase_16 AC 35 ms
51,820 KB
testcase_17 AC 33 ms
52,808 KB
testcase_18 AC 33 ms
52,328 KB
testcase_19 AC 33 ms
52,280 KB
testcase_20 AC 260 ms
76,176 KB
testcase_21 AC 418 ms
76,244 KB
testcase_22 AC 383 ms
75,968 KB
testcase_23 AC 390 ms
76,668 KB
testcase_24 AC 406 ms
76,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 愚直では間に合うのか、分母はだいじょうぶか

mod = 998244353
inv = pow(25, mod-2, mod)

T = int(input())
for t in range(T):
    l = int(input())
    ans = (26*(pow(26, l, mod)-1)*inv)%mod
    print(ans)
0