結果
問題 | No.2131 Concon Substrings (COuNt Version) |
ユーザー | SidewaysOwl |
提出日時 | 2022-11-25 23:17:00 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 140 ms / 2,000 ms |
コード長 | 344 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,004 KB |
実行使用メモリ | 76,032 KB |
最終ジャッジ日時 | 2024-10-02 05:46:45 |
合計ジャッジ時間 | 2,494 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
n = int(input()) dp = [0] * (n+1) dp[0] = 1 mod = 998244353 for i in range(n): n_dp = [0] * (n+1) for j in range(n): n_dp[j] += dp[j] * 25 n_dp[j+1] += dp[j] n_dp[j] %= mod n_dp[j+1] %= mod # print(n_dp) dp = n_dp ans = 0 for i in range(n+1): ans += dp[i] * (i//3) ans %= mod print(ans)