結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー shobonvipshobonvip
提出日時 2022-11-25 21:35:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 61,824 KB
最終ジャッジ日時 2024-10-02 04:08:41
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 54 ms
61,056 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 49 ms
61,340 KB
testcase_08 AC 50 ms
61,312 KB
testcase_09 AC 50 ms
61,404 KB
testcase_10 AC 50 ms
61,824 KB
testcase_11 AC 48 ms
61,440 KB
testcase_12 AC 49 ms
61,184 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 AC 48 ms
61,440 KB
testcase_15 AC 48 ms
61,184 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 48 ms
61,312 KB
testcase_18 AC 48 ms
61,308 KB
testcase_19 AC 40 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# dp[i][j] : i番目まで見て
# j = 0 ... xxx
# j = 1 ... xxc
# j = 2 ... xco
# j = 3 ... con

mod = 998244353
n = int(input())
dp = [[0] * 4 for i in range(n+1)]
dp[0][0] = 1
ans = 0
for i in range(n):
	dp[i+1][1] = dp[i][0] + dp[i][1] * 25 + dp[i][3]
	dp[i+1][2] = dp[i][1] + dp[i][2] * 25
	dp[i+1][3] = dp[i][2]
	dp[i+1][0] = dp[i][0] * 25 + dp[i][3] * 25
	dp[i+1][1] %= mod
	dp[i+1][2] %= mod
	dp[i+1][0] %= mod
	ans += dp[i+1][3] * pow(26, n-i-1, mod)
	ans %= mod
print(ans)
#print(*dp)
0