結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー ああいいああいい
提出日時 2022-11-29 12:52:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-10-06 23:42:19
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
63,744 KB
testcase_01 AC 53 ms
63,744 KB
testcase_02 AC 54 ms
64,000 KB
testcase_03 AC 190 ms
76,288 KB
testcase_04 AC 54 ms
63,616 KB
testcase_05 AC 54 ms
63,488 KB
testcase_06 AC 54 ms
63,744 KB
testcase_07 AC 245 ms
76,416 KB
testcase_08 AC 155 ms
76,288 KB
testcase_09 AC 242 ms
76,800 KB
testcase_10 AC 245 ms
76,160 KB
testcase_11 AC 215 ms
76,160 KB
testcase_12 AC 210 ms
76,288 KB
testcase_13 AC 57 ms
67,828 KB
testcase_14 AC 163 ms
76,160 KB
testcase_15 AC 152 ms
76,744 KB
testcase_16 AC 62 ms
71,040 KB
testcase_17 AC 147 ms
76,032 KB
testcase_18 AC 149 ms
76,288 KB
testcase_19 AC 125 ms
76,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

P = 998244353
ans = 0

inf = 1000
dp = [[0] * (inf + 1) for _ in range(3)]
dp[0][0] = 1
for _ in range(N):
    nx = [[0] * (inf + 1) for _ in range(3)]
    for i in range(inf + 1):
        nx[0][i] += dp[0][i] * 25
        nx[1][i] += dp[1][i] * 25 + dp[0][i]
        nx[2][i] += dp[2][i] * 25 + dp[1][i]
        if i < inf:
            nx[0][i + 1] += dp[2][i]
    for i in range(inf + 1):
        for j in range(3):
            nx[j][i] %= P
    dp = nx
ans = 0
for i in range(inf + 1):
    for j in range(3):
        ans += dp[j][i] * i
        ans %= P
print(ans)
0