結果
問題 | No.1085 桁和の桁和 |
ユーザー | chocorusk |
提出日時 | 2020-06-19 22:04:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,324 bytes |
コンパイル時間 | 1,273 ms |
コンパイル使用メモリ | 128,920 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-07-23 00:03:55 |
合計ジャッジ時間 | 2,921 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
11,264 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 6 ms
11,264 KB |
testcase_09 | AC | 5 ms
11,264 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; const ll MOD=1e9+7; int main() { string s; cin>>s; int n=s.size(); int d; cin>>d; if(d==0){ for(int i=0; i<n; i++){ if(s[i]!='0' && s[i]!='?'){ cout<<0<<endl; return 0; } } cout<<1<<endl; return 0; } ll dp[10][100010]={}; dp[0][0]=1; for(int i=0; i<n; i++){ if(s[i]!='?'){ int x=s[i]-'0'; for(int j=0; j<9; j++){ (dp[(x+j)%9][i+1]+=dp[j][i])%=MOD; } }else{ for(int x=0; x<9; x++){ for(int j=0; j<9; j++){ (dp[(x+j)%9][i+1]+=dp[j][i])%=MOD; } } } } cout<<dp[d%9][n]<<endl; return 0; }