結果

問題 No.189 SUPER HAPPY DAY
ユーザー ぴろずぴろず
提出日時 2015-05-29 12:32:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 5,000 ms
コード長 1,157 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 76,872 KB
実行使用メモリ 52,920 KB
最終ジャッジ日時 2024-07-06 10:41:14
合計ジャッジ時間 8,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,336 KB
testcase_01 AC 172 ms
42,184 KB
testcase_02 AC 127 ms
41,692 KB
testcase_03 AC 160 ms
41,860 KB
testcase_04 AC 159 ms
41,860 KB
testcase_05 AC 165 ms
41,936 KB
testcase_06 AC 165 ms
41,852 KB
testcase_07 AC 163 ms
41,992 KB
testcase_08 AC 158 ms
42,088 KB
testcase_09 AC 166 ms
41,812 KB
testcase_10 AC 168 ms
41,740 KB
testcase_11 AC 164 ms
41,804 KB
testcase_12 AC 166 ms
41,956 KB
testcase_13 AC 223 ms
46,640 KB
testcase_14 AC 230 ms
51,540 KB
testcase_15 AC 205 ms
47,988 KB
testcase_16 AC 216 ms
48,332 KB
testcase_17 AC 224 ms
49,352 KB
testcase_18 AC 203 ms
47,740 KB
testcase_19 AC 236 ms
50,528 KB
testcase_20 AC 196 ms
47,932 KB
testcase_21 AC 203 ms
47,372 KB
testcase_22 AC 175 ms
42,644 KB
testcase_23 AC 189 ms
48,020 KB
testcase_24 AC 212 ms
48,944 KB
testcase_25 AC 266 ms
52,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no189;

import java.util.Scanner;

public class Main {
	public static final long MOD = 1000000009;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long[] m = count(sc.next());
		long[] d = count(sc.next());
		long ans = 0;
		for(int i=1;i<=2000;i++) {
			ans = (ans + m[i] * d[i]) % MOD;
		}
		System.out.println(ans);
	}

	public static long[] count(String s) {
		int n = s.length();
		int[] d = new int[n];
		for(int i=0;i<n;i++) {
			d[i] = s.charAt(i) - '0';
		}
		long[][][] dp = new long[n+1][2][2020];
		dp[0][0][0] = 1;
		for(int i=0;i<n;i++) {
			for(int j=0;j<=2000;j++) {
				for(int k=0;k<=9;k++) {
					dp[i+1][1][j+k] += dp[i][1][j];
					if (d[i] > k) {
						dp[i+1][1][j+k] += dp[i][0][j];
					}else if(d[i] == k) {
						dp[i+1][0][j+k] += dp[i][0][j];
					}
					dp[i+1][0][j+k] %= MOD;
					dp[i+1][1][j+k] %= MOD;
				}
			}
//			System.out.println(i);
//			System.out.println(Arrays.toString(dp[i][0]));
//			System.out.println(Arrays.toString(dp[i][1]));
		}
		long[] ret = new long[2020];
		for(int i=0;i<2020;i++) {
			ret[i] = (dp[n][0][i] + dp[n][1][i]) % MOD;
		}
		return ret;
	}

}
0