結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-10-25 02:39:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 670 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 135,676 KB
最終ジャッジ日時 2024-07-03 04:52:51
合計ジャッジ時間 3,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,416 KB
testcase_01 AC 39 ms
52,724 KB
testcase_02 AC 39 ms
52,444 KB
testcase_03 AC 148 ms
90,548 KB
testcase_04 AC 41 ms
52,476 KB
testcase_05 AC 39 ms
52,108 KB
testcase_06 AC 40 ms
53,428 KB
testcase_07 AC 278 ms
134,896 KB
testcase_08 AC 115 ms
89,992 KB
testcase_09 AC 276 ms
135,676 KB
testcase_10 AC 272 ms
135,420 KB
testcase_11 AC 208 ms
112,476 KB
testcase_12 AC 202 ms
112,600 KB
testcase_13 AC 47 ms
60,716 KB
testcase_14 AC 121 ms
89,644 KB
testcase_15 AC 112 ms
89,940 KB
testcase_16 AC 48 ms
59,924 KB
testcase_17 AC 109 ms
89,784 KB
testcase_18 AC 110 ms
89,752 KB
testcase_19 AC 70 ms
69,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dp = [[0 for _ in range(N + 2)] for _ in range(N + 1)]
dp[0][0] = 1

mod = 998244353
for i in range(N):
    for j in range(N + 1):
        dp[i + 1][j + 1] = (dp[i + 1][j + 1] + dp[i][j]) % mod
        dp[i + 1][j] = (dp[i + 1][j] + dp[i][j] * 25) % mod

ans = 0
for j in range(N + 1):
    ans = (ans + dp[N][j] * (j // 3)) % mod
print(ans)
0