結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,872 KB
testcase_01 AC 39 ms
51,940 KB
testcase_02 AC 39 ms
52,880 KB
testcase_03 AC 38 ms
52,632 KB
testcase_04 AC 37 ms
52,004 KB
testcase_05 AC 38 ms
52,320 KB
testcase_06 AC 38 ms
52,328 KB
testcase_07 AC 37 ms
51,936 KB
testcase_08 AC 37 ms
52,392 KB
testcase_09 AC 38 ms
52,172 KB
testcase_10 AC 36 ms
52,336 KB
testcase_11 AC 38 ms
53,352 KB
testcase_12 AC 37 ms
52,188 KB
testcase_13 AC 40 ms
53,036 KB
testcase_14 AC 38 ms
52,468 KB
testcase_15 AC 40 ms
52,212 KB
testcase_16 AC 39 ms
52,464 KB
testcase_17 AC 37 ms
53,196 KB
testcase_18 AC 38 ms
53,364 KB
testcase_19 AC 38 ms
52,676 KB
testcase_20 AC 349 ms
76,448 KB
testcase_21 AC 559 ms
76,168 KB
testcase_22 AC 529 ms
76,348 KB
testcase_23 AC 552 ms
76,256 KB
testcase_24 AC 516 ms
76,416 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