結果
問題 | No.1086 桁和の桁和2 |
ユーザー | risujiroh |
提出日時 | 2020-06-19 22:03:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,032 bytes |
コンパイル時間 | 2,136 ms |
コンパイル使用メモリ | 208,372 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-03 14:41:24 |
合計ジャッジ時間 | 5,511 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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 | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 36 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 23 ms
5,376 KB |
testcase_11 | AC | 8 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 30 ms
5,376 KB |
testcase_14 | AC | 19 ms
5,376 KB |
testcase_15 | AC | 14 ms
5,376 KB |
testcase_16 | AC | 71 ms
5,376 KB |
testcase_17 | AC | 7 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 84 ms
5,376 KB |
testcase_20 | AC | 11 ms
5,376 KB |
testcase_21 | AC | 71 ms
5,376 KB |
testcase_22 | AC | 98 ms
5,376 KB |
testcase_23 | AC | 61 ms
5,376 KB |
testcase_24 | AC | 43 ms
5,376 KB |
testcase_25 | AC | 82 ms
5,376 KB |
testcase_26 | AC | 68 ms
5,376 KB |
testcase_27 | AC | 50 ms
5,376 KB |
testcase_28 | AC | 42 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 102 ms
5,376 KB |
testcase_31 | AC | 102 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 101 ms
5,376 KB |
testcase_34 | AC | 100 ms
5,376 KB |
testcase_35 | AC | 38 ms
5,504 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "debug.h" #else #define DEBUG(...) #endif template <class T, class Op = multiplies<T>> constexpr T power(T a, long long n, Op op = Op(), T e = {1}) { assert(n >= 0); while (n) { if (n & 1) e = op(e, a); if (n >>= 1) a = op(a, a); } return e; } template <unsigned M> struct modular { using m = modular; static constexpr unsigned mod = M; unsigned v; modular(long long x = 0) : v((x %= mod) < 0 ? x + mod : x) {} m operator-() const { return m() -= *this; } m& operator+=(m b) { if ((int)(v += b.v - mod) < 0) v += mod; return *this; } m& operator-=(m b) { if ((int)(v -= b.v) < 0) v += mod; return *this; } m& operator*=(m b) { v = (uint64_t)v * b.v % mod; return *this; } m& operator/=(m b) { return *this *= power(b, mod - 2); } friend m operator+(m a, m b) { return a += b; } friend m operator-(m a, m b) { return a -= b; } friend m operator*(m a, m b) { return a *= b; } friend m operator/(m a, m b) { return a /= b; } friend bool operator==(m a, m b) { return a.v == b.v; } }; using mint = modular<power(10, 9) + 7>; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<long long> l(n), r(n); vector<int> d(n); for (auto&& e : l) cin >> e; for (auto&& e : r) cin >> e; for (auto&& e : d) cin >> e; for (int i = 1; i < n; ++i) { if (d[i - 1] and d[i] == 0) { cout << "0\n"; exit(0); } } { int p = 0; while (p < n and d[p] == 0) { ++p; } l.erase(begin(l), begin(l) + p); r.erase(begin(r), begin(r) + p); d.erase(begin(d), begin(d) + p); n = size(l); } mint res = 1; bool first = true; for (int i = 0; i < n; ++i) { int diff = d[i]; if (i) { diff -= d[i - 1]; diff += 9; diff %= 9; } res *= (power<mint>(10, r[i]) - power<mint>(10, l[i])) / 9 + (diff == 0); if (diff == 9 and first) { first = false; res -= 1; } } cout << res.v << '\n'; }