結果
問題 | No.189 SUPER HAPPY DAY |
ユーザー | imulan |
提出日時 | 2016-10-07 04:33:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,590 bytes |
コンパイル時間 | 1,524 ms |
コンパイル使用メモリ | 169,812 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 19:02:09 |
合計ジャッジ時間 | 3,206 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,400 KB |
testcase_01 | AC | 4 ms
6,528 KB |
testcase_02 | AC | 4 ms
6,528 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 5 ms
6,528 KB |
testcase_06 | WA | - |
testcase_07 | AC | 5 ms
6,528 KB |
testcase_08 | WA | - |
testcase_09 | AC | 5 ms
6,528 KB |
testcase_10 | AC | 5 ms
6,528 KB |
testcase_11 | AC | 5 ms
6,400 KB |
testcase_12 | AC | 5 ms
6,528 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 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second const int mod=1000000009; string m,d; int dp[201][1900][2]; int a[1900]={0}, b[1900]={0}; int main() { cin >>m >>d; int M=m.size(), D=d.size(); // about m memset(dp,0,sizeof(dp)); dp[0][0][0]=1; rep(i,M) { rep(j,1900) { for(int k=0; k<m[i]-'0'; ++k) { if(j+k<1900) (dp[i+1][j+k][1]+=dp[i][j][0])%=mod; } if(j+(m[i]-'0')<1900) (dp[i+1][j+(m[i]-'0')][0]+=dp[i][j][0])%=mod; rep(k,10) { if(j+k<1900) (dp[i+1][j+k][1]+=dp[i][j][1])%=mod; } } } rep(i,1900) a[i]=(dp[M][i][0]+dp[M][i][1])%mod; // about d memset(dp,0,sizeof(dp)); dp[0][0][0]=1; rep(i,D) { rep(j,1900) { for(int k=0; k<d[i]-'0'; ++k) { if(j+k<1900) (dp[i+1][j+k][1]+=dp[i][j][0])%=mod; } if(j+(d[i]-'0')<1900) (dp[i+1][j+(d[i]-'0')][0]+=dp[i][j][0])%=mod; rep(k,10) { if(j+k<1900) (dp[i+1][j+k][1]+=dp[i][j][1])%=mod; } } } rep(i,1900) b[i]=(dp[M][i][0]+dp[M][i][1])%mod; ll ans=0; for(int i=1; i<1900; ++i) (ans+=(ll)a[i]*b[i])%=mod; cout << ans << endl; return 0; }