結果

問題 No.1964 sum = length
ユーザー eQeeQe
提出日時 2024-10-17 17:18:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 2,599 bytes
コンパイル時間 4,933 ms
コンパイル使用メモリ 314,308 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-17 17:18:24
合計ジャッジ時間 9,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 10 ms
6,816 KB
testcase_13 AC 19 ms
6,816 KB
testcase_14 AC 34 ms
6,816 KB
testcase_15 AC 45 ms
6,816 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 12 ms
6,820 KB
testcase_18 AC 16 ms
6,816 KB
testcase_19 AC 8 ms
6,816 KB
testcase_20 AC 9 ms
6,816 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 163 ms
6,816 KB
testcase_23 AC 157 ms
6,820 KB
testcase_24 AC 83 ms
6,816 KB
testcase_25 AC 101 ms
6,816 KB
testcase_26 AC 191 ms
6,820 KB
testcase_27 AC 122 ms
6,820 KB
testcase_28 AC 101 ms
6,820 KB
testcase_29 AC 139 ms
6,816 KB
testcase_30 AC 103 ms
6,816 KB
testcase_31 AC 180 ms
6,816 KB
testcase_32 AC 55 ms
6,820 KB
testcase_33 AC 55 ms
6,816 KB
testcase_34 AC 166 ms
6,816 KB
testcase_35 AC 74 ms
6,816 KB
testcase_36 AC 120 ms
6,816 KB
testcase_37 AC 151 ms
6,820 KB
testcase_38 AC 198 ms
6,816 KB
testcase_39 AC 99 ms
6,816 KB
testcase_40 AC 108 ms
6,820 KB
testcase_41 AC 176 ms
6,816 KB
testcase_42 AC 211 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
namespace my{
using ml=atcoder::modint998244353;
auto&operator>>(std::istream&i,ml&x){int t;i>>t;x=t;return i;}
auto&operator<<(std::ostream&o,const ml&x){return o<<x.val();}
void main();
void solve();
}
int main(){my::main();}
namespace my{
#define LL(...) ll __VA_ARGS__;lin(__VA_ARGS__)
#define FO(n) for(ll ij=n;ij--;)
#define FOR(i,...) for(auto[i,i##stop,i##step]=range(0,__VA_ARGS__);i<i##stop;i+=i##step)
#define fo(i,...) FO##__VA_OPT__(R)(i __VA_OPT__(,__VA_ARGS__))
#define fe(a,i,...) for(auto&&__VA_OPT__([)i __VA_OPT__(,__VA_ARGS__]):a)
using namespace std;
using ll=long long;
using ull=unsigned long long;
using ulll=__uint128_t;
using lll=__int128_t;
istream&operator>>(istream&i,ulll&x){ull t;i>>t;x=t;return i;}
ostream&operator<<(ostream&o,const ulll&x){return(x<10?o:o<<x/10)<<ll(x%10);}
istream&operator>>(istream&i,lll&x){ll t;i>>t;x=t;return i;}
ostream&operator<<(ostream&o,const lll&x){return o<<string(x<0,'-')<<ulll(x>0?x:-x);}
auto range(bool s,ll a,ll b=1e18,ll c=1){if(b==1e18)b=a,(s?b:a)=0;return array{a-s,b,c};}
constexpr char nl=10;
constexpr char sp=32;
lll pw(lll x,ll n,ll m=0){assert(n>=0);lll r=1;while(n)n&1?r*=x:r,x*=x,m?r%=m,x%=m:r,n>>=1;return r;}
bool in(auto l,auto m,auto r){return l<=m&&m<r;}

template<class V>concept vectorial=is_base_of_v<vector<typename V::value_type>,V>;
template<class V>istream&operator>>(istream&i,vector<V>&v){fe(v,e)i>>e;return i;}
template<class V>ostream&operator<<(ostream&o,const vector<V>&v){fe(v,e)o<<e<<string(&e!=&v.back(),vectorial<V>?nl:sp);return o;}

template<class V>struct vec:vector<V>{
  using vector<V>::vector;
  vec(const vector<V>&v){vector<V>::operator=(v);}

  vec&operator^=(const vec&u){this->insert(this->end(),u.begin(),u.end());return*this;}
  vec operator^(const vec&u)const{return vec{*this}^=u;}
  vec&operator++(){fe(*this,e)++e;return*this;}
  vec&operator--(){fe(*this,e)--e;return*this;}
};

void io(){cin.tie(nullptr)->sync_with_stdio(0);cout<<fixed<<setprecision(15);}
void lin(auto&...a){(cin>>...>>a);}
template<char c=sp>void pp(const auto&...a){ll n=sizeof...(a);((cout<<a<<string(--n>0,c)),...);cout<<nl;}

void main(){io();ll T=1;fo(T)solve();}
void solve(){
  LL(N);

  const ll D=3;//桁数の上限
  ll offset=D*N+N-1;
  ll M=offset*2+1;
  vec<ml>dp(M);

  dp[offset]=1;
  fo(i,N){
    vec<ml>ndp(M);
    fo(j,M){
      if(dp[j]==0)continue;
      fo(d,D){
        fo(x,pw(10,d),pw(10,d+1)){
          ll nj=j-(d+1)-(i>0)+x;
          if(in(0,nj,M))ndp[nj]+=dp[j];
        }
      }
    }
    swap(dp,ndp);
  }
  pp(dp[offset]);
}}
0