結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー Nzt3Nzt3
提出日時 2022-11-27 20:24:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 205,980 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2024-10-04 11:00:51
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 39 ms
35,200 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 85 ms
73,728 KB
testcase_08 AC 22 ms
20,736 KB
testcase_09 AC 86 ms
73,472 KB
testcase_10 AC 85 ms
73,344 KB
testcase_11 AC 60 ms
52,352 KB
testcase_12 AC 57 ms
49,536 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 26 ms
23,808 KB
testcase_15 AC 22 ms
19,840 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 20 ms
17,920 KB
testcase_18 AC 20 ms
18,176 KB
testcase_19 AC 11 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=998244353;
void ch(long long &a,long long b){
  a=(a+b)%mod;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<vector<long long>>dp(N,vector<long long>(N+1));
  dp[0][0]=25,dp[0][1]=1;
  for(int i=0;i<N-1;i++){
    for(int j=0;j<=N;j++){
      ch(dp[i+1][j],25ll*dp[i][j]);
      if(j!=N)ch(dp[i+1][j+1],dp[i][j]);
    }
  }


  long long ans=0;
  for(long long i=0;i<=N;i++){
    ch(ans,i/3*dp[N-1][i]);
  }
  cout<<ans<<'\n';
}
0