結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー timitimi
提出日時 2022-11-27 18:00:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 76,040 KB
最終ジャッジ日時 2024-10-04 07:48:42
合計ジャッジ時間 2,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 63 ms
75,912 KB
testcase_04 AC 33 ms
51,840 KB
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 32 ms
52,096 KB
testcase_07 AC 78 ms
75,648 KB
testcase_08 AC 56 ms
75,568 KB
testcase_09 AC 85 ms
75,776 KB
testcase_10 AC 79 ms
75,804 KB
testcase_11 AC 90 ms
75,744 KB
testcase_12 AC 68 ms
76,040 KB
testcase_13 AC 37 ms
58,112 KB
testcase_14 AC 56 ms
75,764 KB
testcase_15 AC 54 ms
75,904 KB
testcase_16 AC 37 ms
58,112 KB
testcase_17 AC 55 ms
75,392 KB
testcase_18 AC 52 ms
75,776 KB
testcase_19 AC 46 ms
67,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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