結果

問題 No.189 SUPER HAPPY DAY
ユーザー tentententen
提出日時 2023-06-13 09:30:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 2,493 bytes
コンパイル時間 3,145 ms
コンパイル使用メモリ 95,592 KB
実行使用メモリ 55,200 KB
最終ジャッジ日時 2024-06-12 21:34:35
合計ジャッジ時間 6,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,276 KB
testcase_01 AC 53 ms
50,060 KB
testcase_02 AC 52 ms
50,220 KB
testcase_03 AC 56 ms
50,496 KB
testcase_04 AC 68 ms
50,380 KB
testcase_05 AC 52 ms
50,340 KB
testcase_06 AC 52 ms
50,268 KB
testcase_07 AC 51 ms
50,112 KB
testcase_08 AC 51 ms
50,000 KB
testcase_09 AC 53 ms
50,352 KB
testcase_10 AC 52 ms
50,356 KB
testcase_11 AC 52 ms
50,320 KB
testcase_12 AC 52 ms
49,884 KB
testcase_13 AC 96 ms
52,400 KB
testcase_14 AC 116 ms
54,564 KB
testcase_15 AC 116 ms
54,576 KB
testcase_16 AC 100 ms
54,648 KB
testcase_17 AC 117 ms
54,676 KB
testcase_18 AC 92 ms
54,196 KB
testcase_19 AC 110 ms
54,472 KB
testcase_20 AC 86 ms
51,440 KB
testcase_21 AC 84 ms
51,344 KB
testcase_22 AC 54 ms
50,396 KB
testcase_23 AC 87 ms
53,792 KB
testcase_24 AC 105 ms
54,600 KB
testcase_25 AC 118 ms
55,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000009;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long[] months = getCount(sc.next().toCharArray());
        long[] days = getCount(sc.next().toCharArray());
        long ans = 0;
        for (int i = 1; i < months.length && i < days.length; i++) {
            ans += months[i] * days[i] % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static long[] getCount(char[] inputs) {
        int length = inputs.length;
        long[][] dp = new long[length + 1][length * 9 + 1];
        int current = 0;
        for (int i = 1; i <= length; i++) {
            int x = inputs[i - 1] - '0';
            for (int j = 0; j <= (i - 1) * 9; j++) {
                for (int k = 0; k < 10; k++) {
                    dp[i][j + k] += dp[i - 1][j];
                    dp[i][j + k] %= MOD;
                }
            }
            for (int j = 0; j < x; j++) {
                dp[i][current + j]++;
                dp[i][current + j] %= MOD;
            }
            current += x;
        }
        dp[length][current]++;
        return dp[length];
    }
    
}
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