結果
問題 | No.1084 積の積 |
ユーザー | keijak |
提出日時 | 2020-06-19 23:00:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,679 bytes |
コンパイル時間 | 2,002 ms |
コンパイル使用メモリ | 205,728 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 15:28:20 |
合計ジャッジ時間 | 3,941 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 48 ms
6,940 KB |
testcase_05 | RE | - |
testcase_06 | AC | 47 ms
6,940 KB |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 16 ms
6,940 KB |
testcase_13 | AC | 31 ms
6,940 KB |
testcase_14 | AC | 11 ms
6,940 KB |
testcase_15 | AC | 11 ms
6,940 KB |
testcase_16 | AC | 34 ms
6,940 KB |
testcase_17 | AC | 15 ms
6,944 KB |
testcase_18 | AC | 23 ms
6,940 KB |
testcase_19 | AC | 32 ms
6,944 KB |
testcase_20 | AC | 8 ms
6,944 KB |
testcase_21 | AC | 13 ms
6,944 KB |
testcase_22 | AC | 10 ms
6,944 KB |
testcase_23 | AC | 20 ms
6,944 KB |
testcase_24 | AC | 19 ms
6,940 KB |
testcase_25 | AC | 32 ms
6,944 KB |
testcase_26 | AC | 32 ms
6,940 KB |
testcase_27 | AC | 31 ms
6,940 KB |
testcase_28 | AC | 31 ms
6,940 KB |
testcase_29 | AC | 30 ms
6,944 KB |
testcase_30 | AC | 31 ms
6,940 KB |
testcase_31 | AC | 31 ms
6,940 KB |
ソースコード
//#define DEBUGGING // Enables DEBUG macro. #include <bits/stdc++.h> using namespace std; using i64 = long long; using u64 = unsigned long long; #define REP(i, n) for (int i = 0; (i64)(i) < (i64)(n); ++i) #ifndef DEBUGGING #define debug(...) #define DEBUG(...) #else template <typename T> void debug(T value) { std::cerr << value; } template <typename T, typename... Ts> void debug(T value, Ts... args) { std::cerr << value << ", "; debug(args...); } #define DEBUG(...) \ do { \ cerr << " (L" << __LINE__ << ") "; \ cerr << #__VA_ARGS__ << ": "; \ debug(__VA_ARGS__); \ cerr << endl; \ } while (0) #endif // auto mod int const i64 MOD = 1'000'000'007; struct mint { long long x; mint(long long 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(long long 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; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; vector<i64> A(N); for (auto& x : A) cin >> x; int head = 0, tail = 0; mint ans = 1; mint cum = 1; i64 tmp = 1; while (head < N) { for (; tail < N;) { if (tmp * A[tail] >= 1'000'000'000LL) { break; } tmp *= A[tail++]; cum *= tmp; ans *= tmp; debug('+'); DEBUG(head, tail, cum, ans); } debug('='); DEBUG(head, tail, cum, ans); for (; head < N;) { cum *= mint(A[head]).inv().pow(tail - head); tmp /= A[head]; head++; if (tmp < 1'000'000'000LL) { ans *= cum; debug('-'); DEBUG(head, tail, cum, ans); } if (tail < N && tmp * A[tail] < 1'000'000'000LL) { break; } } } cout << ans << endl; }