結果
問題 | No.260 世界のなんとか3 |
ユーザー | noynote |
提出日時 | 2017-08-28 16:58:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,078 bytes |
コンパイル時間 | 2,323 ms |
コンパイル使用メモリ | 204,264 KB |
実行使用メモリ | 11,168 KB |
最終ジャッジ日時 | 2024-11-06 08:32:19 |
合計ジャッジ時間 | 5,341 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
10,960 KB |
testcase_01 | AC | 6 ms
10,924 KB |
testcase_02 | AC | 6 ms
11,068 KB |
testcase_03 | WA | - |
testcase_04 | AC | 163 ms
11,068 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
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 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 62 ms
10,976 KB |
testcase_27 | AC | 7 ms
10,952 KB |
testcase_28 | AC | 118 ms
10,964 KB |
testcase_29 | WA | - |
ソースコード
#include<bits/stdc++.h> #define range(i,a,b) for(int i = (a); i < (b); i++) #define rep(i,b) for(int i = 0; i < (b); i++) #define all(a) (a).begin(), (a).end() #define show(x) cerr << #x << " = " << (x) << endl; //const int INF = 1e8; const long long M = 1000000007; using namespace std; long long dp[10005][2][2][3][8] = {0}; //i文字まで見た、sより小さい、3が含まれる、mod 3, mod8 long long solve(string s, bool f){ memset(dp, 0, sizeof(dp)); dp[0][0][0][0][0] = 1; rep(i,s.size()) rep(j,2) rep(k,2) rep(l,3) rep(m,8) { int lim = j ? 9 : s[i] - '0'; rep(d,lim + 1){ (dp[i + 1][j || d < lim][k || (d == 3)][(l + d) % 3][(m * 10 + d) % 8] += dp[i][j][k][l][m]) %= M; } } long long ans = 0, less = 0; rep(j,2) rep(k,3) rep(l,8) if((j || k == 0) && l != 0){ ans += dp[s.size()][1][j][k][l]; less += dp[s.size()][0][j][k][l]; } return (ans - (f ? 0 : less)) % M; } int main(){ string a, b; cin >> a >> b; cout << (solve(b,0) - solve(a,1) + M) % M << endl; }