結果

問題 No.260 世界のなんとか3
ユーザー legosukelegosuke
提出日時 2019-10-29 14:31:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,612 bytes
コンパイル時間 1,534 ms
コンパイル使用メモリ 167,480 KB
実行使用メモリ 11,064 KB
最終ジャッジ日時 2023-10-12 23:21:23
合計ジャッジ時間 3,952 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
10,824 KB
testcase_01 AC 6 ms
10,940 KB
testcase_02 AC 6 ms
10,816 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 17 ms
10,888 KB
testcase_06 WA -
testcase_07 AC 48 ms
11,044 KB
testcase_08 AC 35 ms
10,852 KB
testcase_09 AC 22 ms
10,956 KB
testcase_10 AC 54 ms
10,920 KB
testcase_11 AC 51 ms
10,932 KB
testcase_12 AC 33 ms
10,840 KB
testcase_13 AC 14 ms
10,816 KB
testcase_14 WA -
testcase_15 AC 16 ms
11,064 KB
testcase_16 AC 42 ms
10,912 KB
testcase_17 AC 34 ms
10,932 KB
testcase_18 AC 33 ms
10,992 KB
testcase_19 AC 41 ms
10,904 KB
testcase_20 AC 31 ms
10,824 KB
testcase_21 AC 28 ms
10,976 KB
testcase_22 AC 47 ms
10,996 KB
testcase_23 AC 10 ms
10,896 KB
testcase_24 AC 37 ms
10,916 KB
testcase_25 WA -
testcase_26 AC 28 ms
10,920 KB
testcase_27 AC 6 ms
10,952 KB
testcase_28 AC 50 ms
10,948 KB
testcase_29 AC 86 ms
11,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define endl '\n'
#define int long long
#define lint long long
#define pii pair<int,int>
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
#define SZ(v) ((int)v.size())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
#define MINF(a) memset(a,0x3f,sizeof(a))
#define POW(n) (1LL<<(n))
#define POPCNT(n) (__builtin_popcount(n))
#define IN(i,a,b) (a <= i && i <= b)
using namespace std;
template <typename T> inline bool CHMIN(T& a,T b) { if(a>b) { a=b; return 1; } return 0; }
template <typename T> inline bool CHMAX(T& a,T b) { if(a<b) { a=b; return 1; } return 0; }
template <typename T> inline void SORT(T& a) { sort(ALL(a)); }
template <typename T> inline void REV(T& a) { reverse(ALL(a)); }
template <typename T> inline void UNI(T& a) { sort(ALL(a)); a.erase(unique(ALL(a)),a.end()); }
template <typename T> inline T LB(vector<T>& v, T a) { return *lower_bound(ALL(v),a); }
template <typename T> inline int LBP(vector<T>& v, T a) { return lower_bound(ALL(v),a) - v.begin(); }
template <typename T> inline T UB(vector<T>& v, T a) { return *upper_bound(ALL(v),a); }
template <typename T> inline int UBP(vector<T>& v, T a) { return upper_bound(ALL(v),a) - v.begin(); }
template <typename T1, typename T2> ostream& operator<< (ostream& os, const pair<T1,T2>& p) { os << p.first << " " << p.second; return os; }
template <typename T1, typename T2> istream& operator>> (istream& is, pair<T1,T2>& p) { is >> p.first >> p.second; return is; }
template <typename T> ostream& operator<< (ostream& os, const vector<T>& v) { REP(i,v.size()) { if (i) os << " "; os << v[i]; } return os; }
template <typename T> istream& operator>> (istream& is, vector<T>& v) { for(T& in : v) is >> in; return is; }
template <typename T = int> vector<T> make_v(size_t a) { return vector<T>(a); }
template <typename T, typename... Ts> auto make_v(size_t a, Ts... ts) { return vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...)); }
template <typename T, typename V> typename enable_if<is_class<T>::value == 0>::type fill_v(T &t, const V &v) { t = v; }
template <typename T, typename V> typename enable_if<is_class<T>::value != 0>::type fill_v(T &t, const V &v) { for(auto &e : t) fill_v(e,v); }
const lint MOD = 1000000007;
const lint INF = 0x3f3f3f3f3f3f3f3f;
const double EPS = 1e-10;

int dp[10010][2][3][2][8];

int calc(string s) {
    ZERO(dp);
    dp[0][0][0][0][0] = 1;
    REP(i, SZ(s)) REP(j, 2) REP(k, 3) REP(l, 2) REP(m, 8) {
        int lim = (j ? 9 : s[i] - '0');
        REP(d, lim + 1) {
            (dp[i + 1][j | (d < lim)][(10 * k + d) % 3][l | (d == 3)][(10 * m + d) % 8] += dp[i][j][k][l][m]) %= MOD;
        }
    }
    int ans = 0;
    REP(j, 2) REP(k, 3) REP(l, 2) REP(m, 8) {
        if ((k == 0 || l == 1) && (m != 0)) {
            (ans += dp[SZ(s)][j][k][l][m]) %= MOD;
        }
    }
    return ans;
}

bool check(string s) {
    int sum = 0;
    REP(i, SZ(s)) {
        sum += (s[i] - '0');
        if (s[i] == '3') return true;
    }
    if (sum % 3 == 0 || sum % 8 == 0) {
        return true;
    }
    return false;
}

void _main() {
    string A, B;
    cin >> A >> B;
    cout << (calc(B) + MOD - calc(A) + check(A)) % MOD << endl;
}

signed main(signed argc, char **argv) {
    if (argc > 1) {
        if (strchr(argv[1], 'i'))
            freopen("input.txt", "r", stdin);
        if (strchr(argv[1], 'o'))
            freopen("output.txt", "w", stdout);
    }
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(10);
    _main();
    return 0;
}
0