結果

問題 No.189 SUPER HAPPY DAY
ユーザー takeya_okinotakeya_okino
提出日時 2019-06-17 23:35:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 379 ms / 5,000 ms
コード長 1,590 bytes
コンパイル時間 5,160 ms
コンパイル使用メモリ 85,476 KB
実行使用メモリ 102,164 KB
最終ジャッジ日時 2024-05-07 00:38:36
合計ジャッジ時間 8,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,640 KB
testcase_01 AC 109 ms
41,376 KB
testcase_02 AC 102 ms
40,012 KB
testcase_03 AC 107 ms
41,336 KB
testcase_04 AC 98 ms
40,332 KB
testcase_05 AC 113 ms
42,136 KB
testcase_06 AC 117 ms
42,428 KB
testcase_07 AC 111 ms
41,428 KB
testcase_08 AC 115 ms
42,208 KB
testcase_09 AC 111 ms
42,236 KB
testcase_10 AC 102 ms
40,996 KB
testcase_11 AC 117 ms
42,676 KB
testcase_12 AC 114 ms
42,252 KB
testcase_13 AC 260 ms
68,224 KB
testcase_14 AC 274 ms
68,296 KB
testcase_15 AC 312 ms
77,192 KB
testcase_16 AC 345 ms
76,928 KB
testcase_17 AC 302 ms
69,436 KB
testcase_18 AC 360 ms
77,240 KB
testcase_19 AC 366 ms
77,208 KB
testcase_20 AC 170 ms
52,724 KB
testcase_21 AC 228 ms
57,780 KB
testcase_22 AC 142 ms
47,920 KB
testcase_23 AC 285 ms
76,208 KB
testcase_24 AC 202 ms
56,280 KB
testcase_25 AC 379 ms
102,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static long MOD = (long)Math.pow(10, 9) + 9;
  public static long[][][] dp;
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String M = sc.next();
    String D = sc.next();
    int lenM = M.length();
    int lenD = D.length();
    func(D);
    int len2 = D.length();
    long[][][] dp2 = new long[len2][2000][2];
    for(int i = 0; i < len2; i++) {
      for(int j = 0; j < 2000; j++) {
        for(int k = 0; k < 2; k++) {
          dp2[i][j][k] = dp[i][j][k];
        }
      }
    }
    func(M);
    long ans = 0;
    for(int i = 1; i < 2000; i++) {
      long t1 = (dp[lenM - 1][i][0] + dp[lenM - 1][i][1]) % MOD;
      long t2 = (dp2[lenD - 1][i][0] + dp2[lenD - 1][i][1]) % MOD;
      long t = (t1 * t2) % MOD;
      ans = (ans + t) % MOD;
    }
    System.out.println(ans);
  }

  public static void func(String s) {
    int len = s.length();
    dp = new long[len][2000][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;
        }
      }
    }
  }
}
0