結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー rosso01rosso01
提出日時 2022-11-25 21:51:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,072 KB
最終ジャッジ日時 2024-10-02 04:26:39
合計ジャッジ時間 2,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,332 KB
testcase_01 AC 41 ms
52,412 KB
testcase_02 AC 39 ms
52,324 KB
testcase_03 AC 74 ms
75,764 KB
testcase_04 AC 38 ms
52,100 KB
testcase_05 AC 39 ms
51,488 KB
testcase_06 AC 39 ms
52,068 KB
testcase_07 AC 101 ms
76,072 KB
testcase_08 AC 65 ms
75,964 KB
testcase_09 AC 104 ms
75,688 KB
testcase_10 AC 106 ms
75,952 KB
testcase_11 AC 85 ms
75,792 KB
testcase_12 AC 85 ms
76,008 KB
testcase_13 AC 44 ms
58,752 KB
testcase_14 AC 68 ms
75,904 KB
testcase_15 AC 68 ms
75,776 KB
testcase_16 AC 43 ms
58,368 KB
testcase_17 AC 61 ms
75,392 KB
testcase_18 AC 62 ms
75,776 KB
testcase_19 AC 54 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

N = int(input())

# dp[i][j]: i番目まで見てconcon...のj番目まで完成
dp = [0]*(N+1)
dp[0] = 1
for i in range(N):
  dp2 = [0]*(N+1)
  for j in range(i+1):
    dp2[j] += dp[j] * 25
    dp2[j] %= mod
    dp2[j+1] += dp[j]
    dp2[j+1] %= mod
    
  dp = dp2
  
ans = 0
for i in range(3,N+1):
  ans += dp[i] * (i//3)
  ans %= mod
  
print(ans)
0