結果

問題 No.260 世界のなんとか3
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-04-25 00:33:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 2,428 bytes
コンパイル時間 1,957 ms
コンパイル使用メモリ 170,016 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-09-13 12:18:42
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 53 ms
7,272 KB
testcase_04 AC 53 ms
7,296 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 38 ms
6,656 KB
testcase_08 AC 27 ms
6,784 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 42 ms
6,400 KB
testcase_11 AC 39 ms
6,912 KB
testcase_12 AC 25 ms
6,272 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 37 ms
6,656 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 31 ms
6,144 KB
testcase_17 AC 25 ms
5,376 KB
testcase_18 AC 24 ms
5,376 KB
testcase_19 AC 31 ms
6,784 KB
testcase_20 AC 23 ms
5,504 KB
testcase_21 AC 21 ms
5,888 KB
testcase_22 AC 36 ms
6,144 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 28 ms
6,528 KB
testcase_25 AC 35 ms
7,388 KB
testcase_26 AC 22 ms
7,424 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 40 ms
7,296 KB
testcase_29 AC 67 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)



int mod = 1000000007;
int add(int x, int y) { return (x += y) >= mod ? x - mod : x; }
template<class... T> int add(int x, T... y) { return add(x, add(y...)); }
int mul(int x, int y) { return 1LL * x * y % mod; }
template<class... T> int mul(int x, T... y) { return mul(x, mul(y...)); }
int sub(int x, int y) { return add(x, mod - y); }
int modpow(int a, long long b) { int ret = 1; while (b > 0) { if (b & 1) ret = 1LL * ret * a % mod; a = 1LL * a * a % mod; b >>= 1; } return ret; }
int modinv(int a) { return modpow(a, mod - 2); }

int fac[201010], ifac[201010];
void initfac() {
    fac[0] = ifac[0] = 1;
    rep(i, 1, 201010) fac[i] = 1LL * i * fac[i - 1] % mod;
    rep(i, 1, 201010) ifac[i] = modinv(fac[i]);
}
int aCb(int a, int b) {
    if (b < 0 || a < b) return 0;
    return (1LL * fac[a] * ifac[a - b] % mod) * ifac[b] % mod;
}
//-----------------------------------------------------------------------------------
int dp[10101][24][2][2];
int count(string S) {
    int n = S.length();
    rep(i, 0, n + 1) rep(j, 0, 24) rep(k, 0, 2) rep(l, 0, 2) dp[i][j][k][l] = 0;

    dp[0][0][0][1] = 1;
    rep(i, 0, n) rep(j, 0, 24) rep(k, 0, 2) rep(l, 0, 2){
        int cc = S[i] - '0';

        int ma = 10;
        if (l == 1) ma = cc + 1;
        rep(c, 0, ma) {
            int ii = i + 1;
            int jj = (j * 10 + c) % 24;
            int kk = k | (c == 3);
            int ll;

            if (l == 1 && c == cc) ll = 1;
            else ll = 0;

            dp[ii][jj][kk][ll] = add(dp[ii][jj][kk][ll], dp[i][j][k][l]);
        }
    }

    int res = 0;
    rep(j, 0, 24) rep(l, 0, 2) if(j % 8 != 0){
        res = add(res, dp[n][j][1][l]);
    }
    rep(j, 0, 24) rep(l, 0, 2) if (j % 3 == 0 && j % 8 != 0) {
        res = add(res, dp[n][j][0][l]);
    }
    return res;
}
//-----------------------------------------------------------------------------------
bool chk(string S) {
    int mo = 0;
    for (char c : S) mo = (mo * 10 + c - '0') % 24;

    bool aho = (mo % 3 == 0);
    for (char c : S) if (c == '3') aho = true;

    bool seishun = (mo % 8 == 0);

    return aho && !seishun;
}
//-----------------------------------------------------------------------------------
int main() {
    string A, B; cin >> A >> B;

    int ans = sub(count(B),count(A));
    if (chk(A)) ans = add(ans, 1);
    cout << ans << endl;
}
0