結果

問題 No.189 SUPER HAPPY DAY
ユーザー tentententen
提出日時 2020-12-29 01:47:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-10-04 08:34:27
合計ジャッジ時間 6,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,084 KB
testcase_01 AC 127 ms
41,604 KB
testcase_02 AC 109 ms
40,924 KB
testcase_03 AC 125 ms
41,156 KB
testcase_04 AC 128 ms
41,196 KB
testcase_05 AC 130 ms
41,072 KB
testcase_06 AC 119 ms
41,212 KB
testcase_07 AC 128 ms
41,500 KB
testcase_08 AC 129 ms
41,008 KB
testcase_09 AC 129 ms
40,716 KB
testcase_10 AC 126 ms
41,364 KB
testcase_11 AC 128 ms
40,980 KB
testcase_12 AC 123 ms
41,096 KB
testcase_13 AC 143 ms
41,344 KB
testcase_14 AC 137 ms
41,184 KB
testcase_15 AC 138 ms
41,168 KB
testcase_16 AC 128 ms
41,228 KB
testcase_17 AC 159 ms
41,744 KB
testcase_18 AC 127 ms
41,360 KB
testcase_19 AC 138 ms
41,540 KB
testcase_20 AC 145 ms
41,380 KB
testcase_21 AC 132 ms
41,148 KB
testcase_22 AC 120 ms
41,360 KB
testcase_23 AC 135 ms
41,296 KB
testcase_24 AC 141 ms
41,308 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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 < 1800; i++) {
		    ans += (long)mdp[i] * ddp[i] % MOD;
		    ans %= MOD;
		}
		System.out.println(ans);
	}
	
	static int[] getDP(char[] arr) {
	    int[] dp = new int[1800];
	    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