結果

問題 No.1084 積の積
ユーザー ooaiuooaiu
提出日時 2024-12-10 23:12:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 3,119 ms
コンパイル使用メモリ 256,464 KB
実行使用メモリ 9,808 KB
最終ジャッジ日時 2024-12-10 23:12:45
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 22 ms
7,324 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 21 ms
7,196 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 8 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 23 ms
6,016 KB
testcase_13 AC 47 ms
8,960 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 17 ms
5,248 KB
testcase_16 AC 54 ms
9,728 KB
testcase_17 AC 21 ms
5,760 KB
testcase_18 AC 35 ms
7,680 KB
testcase_19 AC 47 ms
9,088 KB
testcase_20 AC 12 ms
5,248 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 14 ms
5,248 KB
testcase_23 AC 30 ms
6,528 KB
testcase_24 AC 26 ms
6,400 KB
testcase_25 AC 47 ms
8,960 KB
testcase_26 AC 49 ms
9,720 KB
testcase_27 AC 50 ms
9,728 KB
testcase_28 AC 50 ms
9,728 KB
testcase_29 AC 49 ms
9,728 KB
testcase_30 AC 50 ms
9,728 KB
testcase_31 AC 49 ms
9,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/modint>
using mint = atcoder::modint1000000007;

void solve() {
    int N;
    cin >> N;
    vector<int64_t> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
        if (A[i] == 0) {
            cout << 0 << endl;
            return;
        }
    }
    vector<vector<int>> thr(N + 1);
    int j = 0;
    __uint128_t mul = 1;
    constexpr __uint128_t inf = 1e9;
    for (int i = 0; i < N; i++) {
        while (j < N && mul * A[j] < inf) mul *= A[j++];
        // [i, j) < 10^9
        thr[j].push_back(i);
        mul /= A[i];
    }
    vector<mint> pref(N + 1, 1);
    for (int i = 0; i < N; i++) pref[i + 1] = pref[i] * A[i];
    mint ans = 1;
    mint ps = 1;
    int cnt = 0;
    for (int i = 0; i < N; i++) {
        cnt++;
        ps *= mint(A[i]).pow(cnt);
        for (int j : thr[i]) {
            mint t = pref[i + 1] / pref[j];
            ps /= t;
            cnt--;
        }
        ans *= ps;
    }
    cout << ans.val() << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0