結果
問題 | No.2131 Concon Substrings (COuNt Version) |
ユーザー |
![]() |
提出日時 | 2022-11-26 14:36:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 51 ms / 2,000 ms |
コード長 | 862 bytes |
コンパイル時間 | 3,809 ms |
コンパイル使用メモリ | 233,288 KB |
実行使用メモリ | 38,784 KB |
最終ジャッジ日時 | 2024-10-02 17:28:10 |
合計ジャッジ時間 | 4,842 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
#include <bits/stdc++.h>#include <atcoder/all>using namespace std;using namespace atcoder;#define rep(i,n) for(int i=0;i<(n);i++)typedef long long ll;//using mint = modint;using mint = modint998244353;using P = pair<int, int>;const ll INF=1LL<<60, dx[]={0,1,0,-1},dy[]={1,0,-1,0};template <typename T> inline bool chmin(T& a,const T&b) {if(a>b){a=b; return 1;} return 0;}template <typename T> inline bool chmax(T& a,const T&b) {if(a<b){a=b; return 1;} return 0;}int main(){int n;cin >> n;vector<vector<mint>> dp(n+1,vector<mint> (n+1));dp[0][0]=1;for(int i=1;i<n+1;i++) {dp[i][0]=dp[i-1][0]*25;for(int j=1;j<n+1;j++) {dp[i][j]=dp[i-1][j-1]+dp[i-1][j]*25;}}mint ans=0;rep(i,n+1){ans += dp[n][i]*(i/3);}cout << ans.val() << endl;return 0;}