結果

問題 No.189 SUPER HAPPY DAY
ユーザー htensaihtensai
提出日時 2020-05-11 09:03:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 1,380 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 78,236 KB
実行使用メモリ 65,896 KB
最終ジャッジ日時 2024-07-18 03:14:21
合計ジャッジ時間 7,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,952 KB
testcase_01 AC 127 ms
53,904 KB
testcase_02 AC 126 ms
53,808 KB
testcase_03 AC 126 ms
53,952 KB
testcase_04 AC 126 ms
54,168 KB
testcase_05 AC 127 ms
54,152 KB
testcase_06 AC 125 ms
54,176 KB
testcase_07 AC 129 ms
53,884 KB
testcase_08 AC 127 ms
54,112 KB
testcase_09 AC 127 ms
53,996 KB
testcase_10 AC 128 ms
53,952 KB
testcase_11 AC 129 ms
53,948 KB
testcase_12 AC 126 ms
53,936 KB
testcase_13 AC 174 ms
58,844 KB
testcase_14 AC 182 ms
61,232 KB
testcase_15 AC 176 ms
63,320 KB
testcase_16 AC 181 ms
63,316 KB
testcase_17 AC 195 ms
63,192 KB
testcase_18 AC 182 ms
63,276 KB
testcase_19 AC 195 ms
59,112 KB
testcase_20 AC 151 ms
56,304 KB
testcase_21 AC 167 ms
56,452 KB
testcase_22 AC 129 ms
53,912 KB
testcase_23 AC 176 ms
63,308 KB
testcase_24 AC 183 ms
64,048 KB
testcase_25 AC 235 ms
65,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000009;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] months = getCount(sc.next().toCharArray());
		int[] days = getCount(sc.next().toCharArray());
		long total = 0;
		for (int i = 1; i < months.length && i < days.length; i++) {
		    total += (long)months[i] * days[i] % MOD;
		    total %= MOD;
		}
	    System.out.println(total);
	}
	
	static int[] getCount(char[] arr) {
	    int length = arr.length;
	    int[][][] dp = new int[length + 1][length * 9 + 1][2];
	    dp[0][0][1] = 1;
	    for (int i = 1; i <= length; i++) {
	        for (int j = 0; j <= (i - 1) * 9; j++) {
	            for (int k = 0; k <= 9; k++) {
	                dp[i][j + k][0] += dp[i - 1][j][0];
	                dp[i][j + k][0] %= MOD;
	                if (k < arr[i - 1] - '0') {
	                    dp[i][j + k][0] += dp[i - 1][j][1];
	                    dp[i][j + k][0] %= MOD;
	                } else if (k == arr[i - 1] - '0') {
	                    dp[i][j + k][1] += dp[i - 1][j][1];
	                    dp[i][j + k][1] %= MOD;
	                }
	            }
	        }
	    }
	    int[] ans = new int[length * 9 + 1];
	    for (int i = 1; i < ans.length; i++) {
	        ans[i] = dp[length][i][0] + dp[length][i][1];
	        ans[i] %= MOD;
	    }
	    return ans;
	}
}
0