結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー rlangevinrlangevin
提出日時 2022-12-31 01:05:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 138,176 KB
最終ジャッジ日時 2024-05-04 12:17:38
合計ジャッジ時間 3,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
136,832 KB
testcase_01 AC 98 ms
137,088 KB
testcase_02 AC 96 ms
136,704 KB
testcase_03 AC 133 ms
137,984 KB
testcase_04 AC 97 ms
136,704 KB
testcase_05 AC 96 ms
136,832 KB
testcase_06 AC 98 ms
137,088 KB
testcase_07 AC 170 ms
138,096 KB
testcase_08 AC 128 ms
137,856 KB
testcase_09 AC 171 ms
137,856 KB
testcase_10 AC 167 ms
137,984 KB
testcase_11 AC 154 ms
137,984 KB
testcase_12 AC 147 ms
137,856 KB
testcase_13 AC 107 ms
137,600 KB
testcase_14 AC 125 ms
137,984 KB
testcase_15 AC 122 ms
138,176 KB
testcase_16 AC 104 ms
137,344 KB
testcase_17 AC 125 ms
137,900 KB
testcase_18 AC 122 ms
137,856 KB
testcase_19 AC 118 ms
137,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 998244353
dp = [[0] * 3005 for i in range(3005)]
dp[0][0] = 1
for i in range(N):
    for j in range(i + 1):
        dp[i + 1][j + 1] += dp[i][j]
        dp[i + 1][j + 1] %= mod
        dp[i + 1][j] += dp[i][j] * 25
        dp[i + 1][j] %= mod
        
ans = 0
for i in range(N + 1):
    ans += dp[N][i] * (i//3)
    ans %= mod
print(ans)
0