結果

問題 No.260 世界のなんとか3
ユーザー kimiyukikimiyuki
提出日時 2017-01-08 17:06:51
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,847 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 82,980 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-22 17:38:59
合計ジャッジ時間 3,707 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 58 ms
4,380 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 61 ms
4,380 KB
testcase_12 WA -
testcase_13 AC 12 ms
4,380 KB
testcase_14 WA -
testcase_15 AC 16 ms
4,380 KB
testcase_16 WA -
testcase_17 AC 38 ms
4,380 KB
testcase_18 AC 37 ms
4,380 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 31 ms
4,384 KB
testcase_22 AC 55 ms
4,376 KB
testcase_23 WA -
testcase_24 AC 43 ms
4,376 KB
testcase_25 AC 50 ms
4,376 KB
testcase_26 AC 37 ms
4,380 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 WA -
testcase_29 AC 99 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
#define whole(f,x,...) ([&](decltype((x)) whole) { return (f)(begin(whole), end(whole), ## __VA_ARGS__); })(x)
using ll = long long;
using namespace std;
template <typename X, typename T> auto vectors(X x, T a) { return vector<T>(x, a); }
template <typename X, typename Y, typename Z, typename... Zs> auto vectors(X x, Y y, Z z, Zs... zs) { auto cont = vectors(y, z, zs...); return vector<decltype(cont)>(x, cont); }
ll modstr(string s, ll m) {
    ll q = 0;
    for (char c : s) q = (q * 10 + (c - '0')) % m;
    return q;
}
const int mod = 1e9+7;
ll f(string s) {
    auto cur = vectors(2, 3, 8, 2, ll());
    auto prv = vectors(2, 3, 8, 2, ll());
    cur[0][0][0][0] = 1;
    for (char c : s) {
        cur.swap(prv);
        repeat (p,2) repeat (i,3) repeat (j,8) repeat (q,2) cur[p][i][j][q] = 0;
        repeat (p,2) repeat (i,3) repeat (j,8) repeat (q,2) {
            repeat (d,10) {
                bool np;
                if (d < (c-'0') or p) {
                    np = true;
                } else if (d == (c-'0')) {
                    np = false;
                } else {
                    continue;
                }
                ll & it = cur[np][(i * 10 + d) % 3][(j * 10 + d) % 8][q or (d == 3)];
                it = (it + prv[p][i][j][q]) % mod;
            }
        }
    }
    ll result = 0;
    repeat (p,2) repeat (i,3) repeat (j,8) repeat (q,2) {
        if ((i == 0 or q == 1) and j != 0) {
            result += cur[p][i][j][q];
        }
    }
    return result;
}
bool g(string s) {
    return modstr(s, 3) == 0 or whole(count, s, '3') or modstr(s, 8) == 0;
}
int main() {
    string a, b; cin >> a >> b;
    cout << (f(b) - f(a) + g(a) + mod) % mod << endl;
    return 0;
}
0