結果

問題 No.189 SUPER HAPPY DAY
ユーザー nebukuro09nebukuro09
提出日時 2016-11-28 15:43:15
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 970 bytes
コンパイル時間 1,216 ms
コンパイル使用メモリ 110,720 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-12 05:14:56
合計ジャッジ時間 3,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 6 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 81 ms
8,448 KB
testcase_14 AC 103 ms
9,856 KB
testcase_15 AC 88 ms
8,760 KB
testcase_16 AC 90 ms
8,960 KB
testcase_17 AC 105 ms
10,240 KB
testcase_18 AC 85 ms
8,448 KB
testcase_19 AC 124 ms
11,520 KB
testcase_20 AC 49 ms
5,632 KB
testcase_21 AC 59 ms
6,400 KB
testcase_22 AC 17 ms
5,376 KB
testcase_23 AC 65 ms
8,704 KB
testcase_24 AC 64 ms
8,832 KB
testcase_25 AC 126 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;
import std.random;
import std.math;
import std.container;
import std.numeric;
import std.bigint;


long mod = 10L^^9+9;

void solve(string S, ref long[][][] dp) {
  auto N = S.length;
  dp = new long[][][](N+1, 2, 1820); // keta, miman, 3wareru, 3tsuku, 8wareru
  dp[0][0][0] = 1L;
  foreach (i; 0..N)
    foreach (j; 0..2)
      foreach (k; 0..1801) {
        auto digit = j ? 9 : (S[i]-'0').to!int;
        foreach (d; 0..digit+1)
          (dp[i+1][j||(d<digit)][k+d] += dp[i][j][k]) %= mod;
      }
}

void main() {
  auto input = readln.split;
  auto A = input[0];
  auto B = input[1];
  long[][][] dp1, dp2;
  solve(A, dp1);
  solve(B, dp2);
  long ans = 0;
  foreach (k; 1..1820)
    (ans += ((dp1[A.length][0][k] + dp1[A.length][1][k]) *
             (dp2[B.length][0][k] + dp2[B.length][1][k]) % mod)) %= mod;
  writeln(ans);
}
0