結果

問題 No.189 SUPER HAPPY DAY
ユーザー takeya_okinotakeya_okino
提出日時 2019-06-17 23:20:52
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,590 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 78,316 KB
実行使用メモリ 87,080 KB
最終ジャッジ日時 2024-05-06 19:39:17
合計ジャッジ時間 7,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,324 KB
testcase_01 AC 107 ms
55,444 KB
testcase_02 AC 110 ms
53,980 KB
testcase_03 AC 106 ms
53,924 KB
testcase_04 AC 117 ms
53,844 KB
testcase_05 AC 122 ms
53,940 KB
testcase_06 AC 118 ms
53,864 KB
testcase_07 AC 118 ms
53,744 KB
testcase_08 AC 113 ms
54,316 KB
testcase_09 AC 102 ms
52,912 KB
testcase_10 AC 104 ms
52,896 KB
testcase_11 AC 106 ms
52,724 KB
testcase_12 AC 115 ms
53,976 KB
testcase_13 AC 256 ms
78,904 KB
testcase_14 AC 262 ms
78,980 KB
testcase_15 AC 261 ms
79,204 KB
testcase_16 AC 326 ms
87,060 KB
testcase_17 AC 272 ms
79,004 KB
testcase_18 AC 281 ms
79,056 KB
testcase_19 AC 334 ms
87,080 KB
testcase_20 AC 166 ms
63,884 KB
testcase_21 AC 216 ms
67,216 KB
testcase_22 AC 140 ms
58,376 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

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][1801][2];
    for(int i = 0; i < len2; i++) {
      for(int j = 0; j < 1801; 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 < 1801; 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][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;
        }
      }
    }
  }
}
0