結果
問題 | No.260 世界のなんとか3 |
ユーザー | mkawa2 |
提出日時 | 2023-01-13 01:16:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 2,814 bytes |
コンパイル時間 | 2,011 ms |
コンパイル使用メモリ | 207,380 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 05:28:26 |
合計ジャッジ時間 | 3,193 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 24 ms
5,376 KB |
testcase_04 | AC | 24 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 17 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 8 ms
5,376 KB |
testcase_10 | AC | 17 ms
5,376 KB |
testcase_11 | AC | 17 ms
5,376 KB |
testcase_12 | AC | 11 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 16 ms
5,376 KB |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | AC | 13 ms
5,376 KB |
testcase_17 | AC | 12 ms
5,376 KB |
testcase_18 | AC | 10 ms
5,376 KB |
testcase_19 | AC | 14 ms
5,376 KB |
testcase_20 | AC | 11 ms
5,376 KB |
testcase_21 | AC | 9 ms
5,376 KB |
testcase_22 | AC | 15 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 13 ms
5,376 KB |
testcase_25 | AC | 13 ms
5,376 KB |
testcase_26 | AC | 13 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 22 ms
5,376 KB |
testcase_29 | AC | 22 ms
5,376 KB |
ソースコード
// #include <atcoder/all> // using namespace atcoder; #include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) #define all(x) (x).begin(), (x).end() #define popcnt(x) __builtin_popcount(x) using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; using vvll = vector<vector<ll>>; // const int inf = 1e9; const ll inf = 1e18; int dx[] = {1, 1, 0, -1, -1, -1, 0, 1}; int dy[] = {0, 1, 1, 1, 0, -1, -1, -1}; void chmin(double& a, double b) { a = min(a, b); } // const int mod = 998244353; const int mod = 1000000007; struct mint { ll x; // typedef long long ll; mint(ll x = 0) : x((x % mod + mod) % mod) {} mint operator-() const { return mint(-x); } mint& operator+=(const mint a) { if ((x += a.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint a) { if ((x += mod - a.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this; } mint operator+(const mint a) const { return mint(*this) += a; } mint operator-(const mint a) const { return mint(*this) -= a; } mint operator*(const mint a) const { return mint(*this) *= a; } mint pow(ll t) const { if (!t) return 1; mint a = pow(t >> 1); a *= a; if (t & 1) a *= *this; return a; } // for prime mod mint inv() const { return pow(mod - 2); } mint& operator/=(const mint a) { return *this *= a.inv(); } mint operator/(const mint a) const { return mint(*this) /= a; } }; istream& operator>>(istream& is, mint& a) { return is >> a.x; } ostream& operator<<(ostream& os, const mint& a) { return os << a.x; } mint dodp(string& str, bool eq) { vector dp(2, vector<mint>(24)); vector pdp(2, vector<mint>(24)); int s = 0, t = 0; rep(i, str.size()) { int a = str[i] - '0'; swap(dp, pdp); rep(f, 2) rep(j, 24) { mint pre = pdp[f][j]; if (pre.x == 0) continue; pdp[f][j] = 0; rep(d, 10) { int nf = f, nj = (j * 10 + d) % 24; if (d == 3) nf = 1; dp[nf][nj] += pre; } } for (int d = (i == 0); d < a; d++) { int nf = t; if (d == 3) nf = 1; int nj = (s * 10 + d) % 24; dp[nf][nj] += 1; } if (i) { for (int d = 1; d < 10; d++) dp[d == 3][d] += 1; } s = (s * 10 + a) % 24; if (a == 3) t = 1; } mint res; for (int j = 3; j < 24; j += 3) res += dp[0][j]; rep(j, 24) { if (j % 8 == 0) continue; res += dp[1][j]; } if (eq && s % 8 && (t || (s % 3 == 0))) res += 1; return res; } int main() { cin.tie(0); ios::sync_with_stdio(false); string a, b; cin >> a >> b; mint ans = dodp(b, true) - dodp(a, false); cout << ans << endl; return 0; }