結果

問題 No.1964 sum = length
ユーザー tentententen
提出日時 2023-01-18 10:45:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 2,207 bytes
コンパイル時間 2,707 ms
コンパイル使用メモリ 95,700 KB
実行使用メモリ 39,392 KB
最終ジャッジ日時 2024-06-11 13:28:15
合計ジャッジ時間 7,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
37,172 KB
testcase_01 AC 44 ms
36,980 KB
testcase_02 AC 44 ms
36,684 KB
testcase_03 AC 45 ms
37,012 KB
testcase_04 AC 44 ms
37,064 KB
testcase_05 AC 44 ms
36,676 KB
testcase_06 AC 45 ms
37,096 KB
testcase_07 AC 46 ms
37,000 KB
testcase_08 AC 47 ms
36,928 KB
testcase_09 AC 47 ms
36,668 KB
testcase_10 AC 44 ms
36,976 KB
testcase_11 AC 43 ms
37,072 KB
testcase_12 AC 50 ms
37,216 KB
testcase_13 AC 70 ms
37,576 KB
testcase_14 AC 78 ms
38,516 KB
testcase_15 AC 70 ms
38,840 KB
testcase_16 AC 46 ms
36,812 KB
testcase_17 AC 53 ms
36,812 KB
testcase_18 AC 54 ms
37,136 KB
testcase_19 AC 46 ms
37,080 KB
testcase_20 AC 49 ms
36,676 KB
testcase_21 AC 44 ms
37,220 KB
testcase_22 AC 106 ms
38,964 KB
testcase_23 AC 108 ms
39,108 KB
testcase_24 AC 92 ms
39,140 KB
testcase_25 AC 91 ms
39,072 KB
testcase_26 AC 113 ms
38,984 KB
testcase_27 AC 97 ms
39,392 KB
testcase_28 AC 90 ms
38,832 KB
testcase_29 AC 102 ms
39,116 KB
testcase_30 AC 93 ms
38,948 KB
testcase_31 AC 116 ms
39,044 KB
testcase_32 AC 76 ms
38,996 KB
testcase_33 AC 75 ms
39,108 KB
testcase_34 AC 110 ms
39,144 KB
testcase_35 AC 95 ms
38,984 KB
testcase_36 AC 96 ms
39,268 KB
testcase_37 AC 103 ms
38,968 KB
testcase_38 AC 115 ms
39,308 KB
testcase_39 AC 91 ms
38,764 KB
testcase_40 AC 96 ms
39,124 KB
testcase_41 AC 110 ms
39,296 KB
testcase_42 AC 119 ms
39,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static int[][] dp;
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        dp = new int[n][n];
        System.out.println(dfw(n - 1, n - 1));
    }
    
    static int dfw(int idx, int size) {
        if (size < 0) {
            return 0;
        }
        if (size == 0) {
            return 1;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][size] == 0) {
            for (int i = 1; i <= size + 3; i++) {
                dp[idx][size] += dfw(idx - 1, size - i + getSize(i));
                dp[idx][size] %= MOD;
            }
        }
        return dp[idx][size];
    }
    
    static int getSize(int x) {
        int size = 0;
        while (x > 0) {
            size++;
            x /= 10;
        }
        return size;
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0