結果
問題 | No.1964 sum = length |
ユーザー |
![]() |
提出日時 | 2022-06-03 21:42:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 304 ms / 2,000 ms |
コード長 | 851 bytes |
コンパイル時間 | 1,674 ms |
コンパイル使用メモリ | 171,664 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 02:33:04 |
合計ジャッジ時間 | 8,849 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 40 |
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long int ll;typedef pair<ll,ll> P;typedef vector<ll> VI;typedef vector<VI> VVI;#define REP(i,n) for(int i=0;i<(n);i++)#define ALL(v) v.begin(),v.end()template<typename T> bool chmax(T &x, const T &y) {return (x<y)?(x=y,true):false;};template<typename T> bool chmin(T &x, const T &y) {return (x>y)?(x=y,true):false;};constexpr ll MOD=998244353;constexpr ll INF=2e18;int main(){int n; cin >> n;int m=400;VVI dp(n+1,VI(m,0));dp[0][200]=1;REP(i,n){REP(j,m){for(int k=1;k<m;k++){int l=j+k-to_string(k).size()-1;if(l<0||m<=l)continue;dp[i+1][l]+=dp[i][j];dp[i+1][l]%=MOD;}}}cout << dp[n][200-1] << endl;return 0;}