結果

問題 No.189 SUPER HAPPY DAY
ユーザー ぴろずぴろず
提出日時 2015-05-29 11:58:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,156 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 77,120 KB
実行使用メモリ 52,756 KB
最終ジャッジ日時 2024-07-06 10:38:22
合計ジャッジ時間 7,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,784 KB
testcase_01 AC 164 ms
42,384 KB
testcase_02 AC 129 ms
41,608 KB
testcase_03 AC 164 ms
42,008 KB
testcase_04 AC 158 ms
42,056 KB
testcase_05 AC 168 ms
41,764 KB
testcase_06 AC 161 ms
41,896 KB
testcase_07 AC 162 ms
41,600 KB
testcase_08 AC 162 ms
41,780 KB
testcase_09 AC 164 ms
41,860 KB
testcase_10 AC 162 ms
41,868 KB
testcase_11 AC 163 ms
41,800 KB
testcase_12 AC 159 ms
41,692 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 221 ms
48,132 KB
testcase_17 WA -
testcase_18 AC 220 ms
47,832 KB
testcase_19 WA -
testcase_20 AC 191 ms
48,060 KB
testcase_21 WA -
testcase_22 AC 175 ms
42,848 KB
testcase_23 AC 189 ms
48,072 KB
testcase_24 AC 215 ms
48,784 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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<202;i++) {
			ret[i] = (dp[n][0][i] + dp[n][1][i]) % MOD;
		}
		return ret;
	}

}
0