結果
問題 | No.189 SUPER HAPPY DAY |
ユーザー | face4 |
提出日時 | 2019-09-26 11:51:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,148 bytes |
コンパイル時間 | 549 ms |
コンパイル使用メモリ | 65,792 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-09-23 07:46:00 |
合計ジャッジ時間 | 1,961 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
ソースコード
#include<iostream> using namespace std; typedef long long ll; const ll mod = 1e9+9; int dp1[201][2][2000] = {}; int dp2[201][2][2000] = {}; void f(const string s, int dp[201][2][2000]){ int n = s.length(); dp[0][0][0] = 1; for(int i = 0; i < n; i++){ for(int j = 0; j < 2; j++){ for(int k = 0; k < 2000; k++){ if(dp[i][j][k] == 0) continue; for(int num = 0; num < 10; num++){ if(j == 0 && num > s[i]-'0') break; int ni = i+1; int nj = j | (num < s[i]-'0'); int nk = k+num; dp[ni][nj][nk] += dp[i][j][k]; dp[ni][nj][nk] %= mod; } } } } } int main(){ string m, d; cin >> m >> d; f(m, dp1); f(d, dp2); ll ans = 0; int mlen = m.length(), dlen = d.length(); for(int i = 1; i < 2000; i++){ ll a = (dp1[mlen][0][i]+dp1[mlen][1][i])%mod; ll b = (dp2[mlen][0][i]+dp2[mlen][1][i])%mod; ans += a*b%mod; ans %= mod; } cout << ans << endl; return 0; }