結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,216 KB
testcase_01 AC 34 ms
52,744 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 35 ms
52,520 KB
testcase_04 AC 36 ms
52,404 KB
testcase_05 AC 34 ms
52,732 KB
testcase_06 AC 35 ms
52,876 KB
testcase_07 AC 35 ms
52,388 KB
testcase_08 AC 35 ms
52,192 KB
testcase_09 AC 36 ms
52,632 KB
testcase_10 AC 38 ms
52,556 KB
testcase_11 AC 36 ms
52,472 KB
testcase_12 AC 34 ms
52,180 KB
testcase_13 AC 35 ms
52,288 KB
testcase_14 AC 35 ms
53,468 KB
testcase_15 AC 35 ms
52,128 KB
testcase_16 AC 36 ms
52,976 KB
testcase_17 AC 35 ms
52,656 KB
testcase_18 AC 36 ms
53,436 KB
testcase_19 AC 35 ms
52,424 KB
testcase_20 AC 347 ms
76,116 KB
testcase_21 AC 550 ms
76,244 KB
testcase_22 AC 536 ms
76,016 KB
testcase_23 AC 538 ms
76,548 KB
testcase_24 AC 503 ms
76,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	ans = pow(26,int(input())+1,998244353)-1
	ans *= pow(26-1,998244353-2,998244353)
	ans -= 1
	print(ans%998244353)
0