結果

問題 No.189 SUPER HAPPY DAY
ユーザー tentententen
提出日時 2020-12-29 01:49:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 886 bytes
コンパイル時間 3,196 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-10-04 08:39:10
合計ジャッジ時間 6,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,812 KB
testcase_01 AC 130 ms
54,284 KB
testcase_02 AC 98 ms
52,532 KB
testcase_03 AC 123 ms
53,852 KB
testcase_04 AC 131 ms
53,504 KB
testcase_05 AC 131 ms
53,840 KB
testcase_06 AC 130 ms
54,160 KB
testcase_07 AC 129 ms
53,940 KB
testcase_08 AC 122 ms
53,432 KB
testcase_09 AC 118 ms
53,736 KB
testcase_10 AC 114 ms
53,304 KB
testcase_11 AC 131 ms
53,732 KB
testcase_12 AC 124 ms
53,720 KB
testcase_13 AC 143 ms
53,708 KB
testcase_14 AC 141 ms
53,660 KB
testcase_15 AC 139 ms
53,684 KB
testcase_16 AC 147 ms
53,764 KB
testcase_17 AC 160 ms
54,000 KB
testcase_18 AC 147 ms
53,920 KB
testcase_19 AC 147 ms
53,968 KB
testcase_20 AC 136 ms
54,000 KB
testcase_21 AC 146 ms
53,696 KB
testcase_22 AC 130 ms
53,608 KB
testcase_23 AC 139 ms
54,268 KB
testcase_24 AC 146 ms
53,388 KB
testcase_25 AC 172 ms
53,924 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[] mdp = getDP(sc.next().toCharArray());
		int[] ddp = getDP(sc.next().toCharArray());
		long ans = 0;
		for (int i = 1; i < 2000; i++) {
		    ans += (long)mdp[i] * ddp[i] % MOD;
		    ans %= MOD;
		}
		System.out.println(ans);
	}
	
	static int[] getDP(char[] arr) {
	    int[] dp = new int[2000];
	    int sum = 0;
	    for (int i = 0; i < arr.length; i++) {
	        for (int j = dp.length - 10; j >= 0; j--) {
	            for (int k = 1; k < 10; k++) {
	                dp[j + k] += dp[j];
	                dp[j + k] %= MOD;
	            }
	        }
	        for (int j = 0; j < arr[i] - '0'; j++) {
	            dp[sum + j]++;
	        }
	        sum += arr[i] - '0';
	    }
	    dp[sum]++;
	    return dp;
	}
}
0