結果

問題 No.260 世界のなんとか3
ユーザー krotonkroton
提出日時 2015-05-31 22:37:36
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 56,672 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-11-07 17:58:19
合計ジャッジ時間 2,886 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,008 KB
testcase_01 AC 8 ms
11,008 KB
testcase_02 AC 8 ms
11,008 KB
testcase_03 AC 94 ms
12,160 KB
testcase_04 AC 95 ms
12,160 KB
testcase_05 AC 25 ms
11,264 KB
testcase_06 AC 18 ms
11,264 KB
testcase_07 AC 67 ms
11,904 KB
testcase_08 AC 49 ms
11,776 KB
testcase_09 AC 30 ms
11,392 KB
testcase_10 AC 73 ms
11,776 KB
testcase_11 AC 69 ms
12,032 KB
testcase_12 AC 45 ms
11,648 KB
testcase_13 AC 18 ms
11,136 KB
testcase_14 AC 63 ms
11,904 KB
testcase_15 AC 23 ms
11,136 KB
testcase_16 AC 58 ms
11,648 KB
testcase_17 AC 47 ms
11,264 KB
testcase_18 AC 46 ms
11,520 KB
testcase_19 AC 58 ms
11,776 KB
testcase_20 AC 43 ms
11,392 KB
testcase_21 AC 40 ms
11,648 KB
testcase_22 AC 65 ms
11,648 KB
testcase_23 AC 13 ms
10,880 KB
testcase_24 AC 52 ms
11,776 KB
testcase_25 AC 47 ms
12,160 KB
testcase_26 AC 47 ms
11,904 KB
testcase_27 AC 9 ms
10,880 KB
testcase_28 AC 83 ms
12,160 KB
testcase_29 AC 85 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string.h>
using namespace std;
typedef long long ll;

const ll MOD = 1e9 + 7;

ll dp[10010][2][24][2];
ll func(const string&S, bool last, int k, bool less, int mod, bool used3) {
    if(k >= S.size()) {
        if(!less && !last)return 0;
        bool aho = (mod % 3 == 0) || used3;
        bool sei = (mod % 8 == 0);
        return aho && !sei;
    }
    if(dp[k][less][mod][used3] != -1)return dp[k][less][mod][used3];

    ll res = 0;
    int d = S[k] - '0';
    for(int i=0;i<10;i++) {
        if(i <= d || less) {
            res += func(S, last, k + 1, less || (i < d), (mod * 10 + i) % 24, used3 || (i == 3));
        }
    }

    res %= MOD;
    return dp[k][less][mod][used3] = res;
}

ll solve(const string& S, bool last) {
    memset(dp, -1, sizeof(dp));
    return func(S, last, 0, false, 0, false);
}

int main(){
    string A, B;
    cin >> A >> B;

    ll res = solve(B, true) - solve(A, false);
    res = (res + MOD) % MOD;

    cout << res << endl;
    return 0;
}
0