結果

問題 No.189 SUPER HAPPY DAY
ユーザー takeya_okinotakeya_okino
提出日時 2019-06-17 22:59:00
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,196 bytes
コンパイル時間 2,583 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 84,668 KB
最終ジャッジ日時 2024-05-06 19:07:08
合計ジャッジ時間 32,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 434 ms
63,832 KB
testcase_01 AC 2,300 ms
57,564 KB
testcase_02 AC 426 ms
56,392 KB
testcase_03 AC 1,842 ms
58,296 KB
testcase_04 AC 1,838 ms
58,180 KB
testcase_05 AC 2,023 ms
58,148 KB
testcase_06 AC 1,860 ms
58,144 KB
testcase_07 AC 2,029 ms
58,156 KB
testcase_08 AC 1,842 ms
57,944 KB
testcase_09 AC 1,953 ms
58,216 KB
testcase_10 AC 1,987 ms
58,300 KB
testcase_11 AC 2,018 ms
58,224 KB
testcase_12 AC 2,013 ms
58,320 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static long MOD = (long)Math.pow(10, 9) + 9;
  
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String M = sc.next();
    String D = sc.next();
    long ans = 0;
    for(int i = 1; i < 1801; i++) {
      long t = (func(M, i) * func(D, i)) % MOD;
      ans = (ans + t) % MOD;
    }
    System.out.println(ans);
  }

  public static long func(String s, int p) {
    int len = s.length();
    long[][][] dp = new long[len][1801][2];
    int first = Integer.parseInt(String.valueOf(s.charAt(0)));
    for(int i = 0; i < first; i++) {
      dp[0][i][1] = 1; 
    }
    dp[0][first][0] = 1;
    for(int i = 1; i < len; i++) {
      int d = Integer.parseInt(String.valueOf(s.charAt(i)));
      for(int j = 0; j <= (9 * i); j++) {
        dp[i][j + d][0] = (dp[i][j + d][0] + dp[i - 1][j][0]) % MOD;
        for(int k = 0; k < d; k++) {
          dp[i][j + k][1] = (dp[i][j + k][1] + dp[i - 1][j][0]) % MOD;
        }
        for(int k = 0; k < 10; k++) {
          dp[i][j + k][1] = (dp[i][j + k][1] + dp[i - 1][j][1]) % MOD;
        }
      }
    }
    return (dp[len - 1][p][0] + dp[len - 1][p][1]) % MOD;
  }
}
0