結果

問題 No.260 世界のなんとか3
ユーザー uenokuuenoku
提出日時 2017-01-31 02:21:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 1,931 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 86,012 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-06 08:18:58
合計ジャッジ時間 6,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,136 KB
testcase_01 AC 5 ms
10,972 KB
testcase_02 AC 7 ms
11,008 KB
testcase_03 AC 310 ms
11,008 KB
testcase_04 AC 315 ms
11,008 KB
testcase_05 AC 63 ms
10,888 KB
testcase_06 AC 44 ms
11,120 KB
testcase_07 AC 215 ms
11,136 KB
testcase_08 AC 149 ms
10,880 KB
testcase_09 AC 85 ms
11,060 KB
testcase_10 AC 245 ms
10,960 KB
testcase_11 AC 230 ms
11,008 KB
testcase_12 AC 138 ms
11,008 KB
testcase_13 AC 42 ms
11,008 KB
testcase_14 AC 204 ms
11,004 KB
testcase_15 AC 57 ms
11,008 KB
testcase_16 AC 177 ms
11,008 KB
testcase_17 AC 142 ms
11,008 KB
testcase_18 AC 136 ms
11,004 KB
testcase_19 AC 175 ms
11,136 KB
testcase_20 AC 126 ms
11,128 KB
testcase_21 AC 111 ms
11,008 KB
testcase_22 AC 197 ms
11,008 KB
testcase_23 AC 23 ms
11,008 KB
testcase_24 AC 159 ms
11,008 KB
testcase_25 AC 199 ms
10,860 KB
testcase_26 AC 114 ms
11,008 KB
testcase_27 AC 7 ms
11,008 KB
testcase_28 AC 223 ms
11,060 KB
testcase_29 AC 394 ms
11,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <vector>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n)-1; i >= 0; i--)
using namespace std;
typedef long long int lli;
lli MOD = 1000000007;
lli f(string s)
{
    int n = s.size();
    lli dp[10040][2][3][2][8] = {};  //pos,less,mod,has3,mod8
    dp[0][0][0][0][0] = 1;
    rep(i, n) rep(j, 2) rep(k, 3) rep(l, 2) rep(q, 8)
    {
        int lim = j ? 9 : s[i] - '0';
        rep(m, lim + 1)
        {
            dp[i + 1][j || m < lim][(k + m) % 3][l || m == 3][(10 * q + m) % 8] += dp[i][j][k][l][q];
            dp[i + 1][j || m < lim][(k + m) % 3][l || m == 3][(10 * q + m) % 8] %= MOD;
        }
    }
    lli a = 0;
    rep(j, 2)
    {
        rep(l, 2)
        {
            rep(k, 3)
            {
                rep(q, 8)
                {
                    if ((l || k == 0) && q != 0) {
                        a += dp[n][j][k][l][q];
                        a %= MOD;
                    }
                }
            }
        }
    }
    return a;
}
int main()
{
    string s, t;
    cin >> s;
    lli A = f(s);
    cin >> t;
    lli B = f(t);
    int sum = 0;
    bool flag = false;
    rep(i, s.size())
    {
        sum += s[i] - '0';
        if (s[i] == '3') {
            flag = true;
        }
    }
    if (sum % 3 == 0) {
        flag = true;
    }
    bool ok = false;
    if (s.size() >= 3) {
        int k = s.size();
        int j = 100 * (s[k - 3] - '0');
        j += 10 * (s[k - 2] - '0');
        j += (s[k - 1] - '0');
        if (j % 8 != 0) {
            ok = true;
        }
    } else {
        int k = s.size();
        int j = 10 * (s[k - 2] - '0');
        j += (s[k - 1] - '0');
        if (k % 8 != 0)
            ok = true;
    }
    if (flag && ok) {
        A--;
    }
    cout << (B - A + MOD) % MOD << endl;
}
0