結果

問題 No.1084 積の積
ユーザー noisy_noiminnoisy_noimin
提出日時 2020-06-22 21:19:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,054 bytes
コンパイル時間 1,146 ms
コンパイル使用メモリ 120,636 KB
実行使用メモリ 5,840 KB
最終ジャッジ日時 2023-09-16 19:25:28
合計ジャッジ時間 4,200 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 AC 64 ms
5,616 KB
testcase_07 RE -
testcase_08 AC 2 ms
4,376 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 4 ms
4,376 KB
testcase_12 AC 33 ms
4,380 KB
testcase_13 AC 70 ms
5,492 KB
testcase_14 AC 26 ms
4,376 KB
testcase_15 AC 24 ms
4,380 KB
testcase_16 AC 81 ms
5,732 KB
testcase_17 AC 31 ms
4,380 KB
testcase_18 AC 52 ms
4,872 KB
testcase_19 AC 71 ms
5,416 KB
testcase_20 AC 17 ms
4,380 KB
testcase_21 AC 26 ms
4,376 KB
testcase_22 AC 20 ms
4,376 KB
testcase_23 AC 43 ms
4,428 KB
testcase_24 AC 39 ms
4,568 KB
testcase_25 AC 70 ms
5,480 KB
testcase_26 AC 77 ms
5,628 KB
testcase_27 AC 76 ms
5,612 KB
testcase_28 AC 77 ms
5,676 KB
testcase_29 AC 76 ms
5,840 KB
testcase_30 AC 76 ms
5,728 KB
testcase_31 AC 77 ms
5,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
#include <string>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <tuple>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cassert>
#include <cstdint>
#include <cctype>
#include <numeric>
#include <bitset>
#include <functional>

using namespace std;

using ll =  long long;
using Pll = pair<ll, ll>;
using Pii = pair<int, int>;

constexpr int INF = 1 << 30;
constexpr ll LINF = 1LL << 60;
constexpr ll MOD = 1000000007;
constexpr ll MAX = 1000000000;
constexpr long double EPS = 1e-10;
constexpr int dyx[4][2] = {
    { 0, 1}, {-1, 0}, {0,-1}, {1, 0}
};

ll modpow(ll a, ll t) {
    if(t < 0) assert(false);
    ll ret = 1LL;
    while(t){
        if(t & 1LL){
            ret *= a;
            ret %= MOD;
        }
        a *= a;
        a %= MOD;
        t >>= 1;
    }
    return ret;
}

ll modinv(ll a) {
    return modpow(a, MOD-2);
}

int main() {
    ios::sync_with_stdio(false); cin.tie(nullptr);
    int n;
    cin >> n;
    vector<ll> a(n+1, 1);
    for(int i=1;i<=n;++i) {
        cin >> a[i];
    }

    vector<int> r(n+1, 0);
    r[0] = 1;
    ll p = 1LL;
    for(int i=1;i<=n;++i) {
        r[i] = max(i, r[i-1]);
        if(r[i] == i) p = 1LL;
        while(r[i] <= n) {
            if(a[r[i]] > MAX/p) {
                break;
            } else {
                p *= a[r[i]];
                ++r[i];
            }
        }
        p /= a[i];
    }

    vector<ll> weighted_product(n+1, 1);
    vector<ll> product(n+1, 1);
    for(int i=1;i<=n;++i) {
        weighted_product[i] = (weighted_product[i-1] * modpow(a[i], n+1-i)) % MOD;
        product[i] = (product[i-1] * a[i]) % MOD;
    }

    ll ans = 1LL;
    for(int i=1;i<=n;++i) {
        ll tmp = (weighted_product[r[i]-1] * modinv(weighted_product[i-1])) % MOD;
        tmp = (tmp * modpow(modinv((product[r[i]-1] * modinv(product[i-1])) % MOD), n+1-r[i])) % MOD;
        ans *= tmp;
        ans %= MOD;
    }

    cout << ans << endl;

}
0