結果
問題 | No.189 SUPER HAPPY DAY |
ユーザー | te-sh |
提出日時 | 2016-09-14 20:16:33 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,238 bytes |
コンパイル時間 | 2,407 ms |
コンパイル使用メモリ | 119,828 KB |
実行使用メモリ | 29,680 KB |
最終ジャッジ日時 | 2024-06-12 04:23:13 |
合計ジャッジ時間 | 2,679 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 88 ms
25,056 KB |
testcase_16 | AC | 105 ms
27,776 KB |
testcase_17 | WA | - |
testcase_18 | AC | 83 ms
23,372 KB |
testcase_19 | WA | - |
testcase_20 | AC | 28 ms
9,584 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 84 ms
28,536 KB |
testcase_24 | AC | 85 ms
28,328 KB |
testcase_25 | AC | 84 ms
29,680 KB |
ソースコード
import std.algorithm, std.array, std.container, std.range, std.bitmanip; import std.numeric, std.math, std.bigint, std.random, core.bitop; import std.string, std.regex, std.conv, std.stdio, std.typecons; const auto mod = 10 ^^ 9 + 9; void main() { auto rd = readln.split.map!(a => a.map!(c => c - '0').map!(to!int).array); auto m = rd[0], d = rd[1]; auto maxK = max(m.length, d.length); auto memo = new int[][][](maxK * 9 + 1, maxK + 1, 11); int calc(int[] di, int n, int f) { auto k = di.length; if (k * 9 < n) return 0; if (k == 1) return f < n ? 0 : 1; if (memo[n][k][f] > 0) return memo[n][k][f]; auto r = 0; foreach (i; 0..f) r = (r + calc(di[1..$], n - i, 10)) % mod; if (f != 10) r = (r + calc(di[1..$], n - f, di[1])) % mod; memo[n][k][f] = r; return r; } int[] sum(int[] di) { auto r = new int[](di.length * 9 + 1); foreach (n; 1..di.length * 9 + 1) r[n] = calc(di, n.to!int, di[0]); return r; } auto mr = sum(m), dr = sum(d); auto r = 0; foreach (i; 0..min(mr.length, dr.length)) r = (r + modMul(mr[i], dr[i], mod)) % mod; writeln(r); } int modMul(int a, int b, int mod) { return ((a.to!long * b.to!long) % mod).to!int; }