結果
問題 | No.260 世界のなんとか3 |
ユーザー | noynote |
提出日時 | 2017-08-28 16:55:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,051 bytes |
コンパイル時間 | 1,569 ms |
コンパイル使用メモリ | 160,892 KB |
実行使用メモリ | 78,592 KB |
最終ジャッジ日時 | 2024-11-06 08:31:05 |
合計ジャッジ時間 | 7,055 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
ソースコード
#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 solve(string s, bool f){ long long dp[100005][2][2][3][8] = {0}; //i文字まで見た、sより小さい、3が含まれる、mod 3, mod8 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; }