結果

問題 No.1964 sum = length
ユーザー NanashimaNanashima
提出日時 2022-06-03 23:10:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,578 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 175,512 KB
実行使用メモリ 260,736 KB
最終ジャッジ日時 2024-09-21 03:16:09
合計ジャッジ時間 20,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 14 ms
6,940 KB
testcase_13 AC 40 ms
11,008 KB
testcase_14 AC 103 ms
22,272 KB
testcase_15 AC 149 ms
30,848 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 21 ms
7,296 KB
testcase_18 AC 28 ms
8,704 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1,169 ms
200,064 KB
testcase_23 AC 1,094 ms
187,520 KB
testcase_24 AC 417 ms
76,160 KB
testcase_25 AC 544 ms
97,792 KB
testcase_26 AC 1,317 ms
224,512 KB
testcase_27 AC 740 ms
131,200 KB
testcase_28 AC 501 ms
90,240 KB
testcase_29 AC 941 ms
162,176 KB
testcase_30 AC 558 ms
100,480 KB
testcase_31 AC 1,307 ms
224,512 KB
testcase_32 AC 203 ms
40,448 KB
testcase_33 AC 185 ms
36,992 KB
testcase_34 AC 1,081 ms
185,472 KB
testcase_35 AC 293 ms
55,424 KB
testcase_36 AC 629 ms
113,024 KB
testcase_37 AC 909 ms
156,672 KB
testcase_38 AC 1,467 ms
245,760 KB
testcase_39 AC 515 ms
93,952 KB
testcase_40 AC 570 ms
101,888 KB
testcase_41 AC 1,226 ms
206,464 KB
testcase_42 AC 1,578 ms
260,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0; i<(n); i++)
#define INF ((1LL<<62)-(1LL<<31))
#define all(a)  (a).begin(),(a).end()
#define rall(a)  (a).rbegin(),(a).rend()
typedef long long ll;
typedef pair<ll,ll> pl;

const ll mod=998244353;

int f(ll num) {
    int cnt=0;
    while(num>=10) {
        num/=10;
        cnt++;
    }
    return cnt;
}

int main() {
    ll n;
    cin >> n;
    ll len=4*n;
    vector<vector<vector<ll>>> dp(n,vector<vector<ll>> (len,vector<ll> (n,0)));
    for(int i=1;i<len;i++) dp[0][i][f(i)]=1;
    for(int i=0;i<n-1;i++) {
        rep(j,len) rep(k,n) { 
            for(int l=1;l<=1000;l*=10) {
                if(j+l<len&&k+f(l)<n) dp[i+1][j+l][k+f(l)]=(dp[i+1][j+l][k+f(l)]+dp[i][j][k])%mod;
                if(j+l*10<len&&k+f(l)<n) dp[i+1][j+l*10][k+f(l)]=(dp[i+1][j+l*10][k+f(l)]+(-dp[i][j][k]+mod)%mod)%mod;
            }
        }
        rep(j,n) for(int k=1;k<len;k++) dp[i+1][k][j]=(dp[i+1][k][j]+dp[i+1][k-1][j])%mod;
    }
    ll ans=0;
    for(int i=0;i<n;i++) {
        if(2*n-1+i<len) ans=(ans+dp[n-1][2*n-1+i][i])%mod;
    }
    cout << ans << endl;
    return 0;
}
0