結果
問題 | No.189 SUPER HAPPY DAY |
ユーザー | kotamanegi |
提出日時 | 2017-03-14 23:02:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 44 ms / 5,000 ms |
コード長 | 1,621 bytes |
コンパイル時間 | 745 ms |
コンパイル使用メモリ | 96,128 KB |
実行使用メモリ | 35,948 KB |
最終ジャッジ日時 | 2024-06-30 00:47:00 |
合計ジャッジ時間 | 1,927 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 4 ms
6,944 KB |
testcase_04 | AC | 4 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 4 ms
7,624 KB |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 4 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,940 KB |
testcase_13 | AC | 27 ms
21,612 KB |
testcase_14 | AC | 36 ms
24,764 KB |
testcase_15 | AC | 31 ms
22,184 KB |
testcase_16 | AC | 29 ms
21,788 KB |
testcase_17 | AC | 34 ms
24,740 KB |
testcase_18 | AC | 29 ms
22,556 KB |
testcase_19 | AC | 41 ms
28,240 KB |
testcase_20 | AC | 18 ms
13,748 KB |
testcase_21 | AC | 20 ms
15,012 KB |
testcase_22 | AC | 8 ms
8,520 KB |
testcase_23 | AC | 22 ms
19,960 KB |
testcase_24 | AC | 22 ms
22,196 KB |
testcase_25 | AC | 44 ms
35,948 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <algorithm> #include <utility> #include <functional> #include <cstring> #include <queue> #include <stack> #include <math.h> #include <iterator> #include <vector> #include <string> #include <set> #include <math.h> #include <iostream> #include<map> #include <iomanip> #include <time.h> #include <random> #include <stdlib.h> #include <list> #include <typeinfo> #include <list> #include <set> using namespace std; #define LONG_INF 10000000000000000 #define MAX_MOD 1000000009 #define REP(i,n) for(long long i = 0;i < n;++i) long long plus_map[2][10000] = {}; long long dper[2][300][2][5000] = {}; int main() { string a, b; cin >> a >> b; for (int i = 0;i < 2;++i) { string m; if (i == 0) { m = a; } else m = b; dper[i][0][1][0] = 1; for (int q = 0;q < m.length();++q) { for (int j = 0;j < 4000;++j) { //どの数でも選べる for (int t = 0;t < 10;++t) { dper[i][q+1][0][t + j] += dper[i][q][0][j]; dper[i][q+1][0][t + j] %= MAX_MOD; } //どの数でも選べない for (int t = 0;t < m[q] - '0';++t) { dper[i][q+1][0][t + j] += dper[i][q][1][j]; dper[i][q+1][0][t + j] %= MAX_MOD; } dper[i][q+1][1][j + (m[q] - '0')] += dper[i][q][1][j]; dper[i][q+1][1][j + (m[q] - '0')] %= MAX_MOD; } } for (int q = 1;q < 5000;++q) { plus_map[i][q] = dper[i][m.length()][0][q] + dper[i][m.length()][1][q]; plus_map[i][q] %= MAX_MOD; } } long long ans = 0; for (int i = 1;i < 5000;++i) { ans += plus_map[0][i] * plus_map[1][i]; ans %= MAX_MOD; } cout << ans << endl; return 0; }