結果
問題 | No.1084 積の積 |
ユーザー | iqueue02 |
提出日時 | 2020-06-19 22:48:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 917 bytes |
コンパイル時間 | 2,227 ms |
コンパイル使用メモリ | 203,656 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-03 15:19:34 |
合計ジャッジ時間 | 9,530 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,948 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | RE | - |
testcase_06 | TLE | - |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 19 ms
6,944 KB |
testcase_13 | AC | 36 ms
6,944 KB |
testcase_14 | AC | 15 ms
6,944 KB |
testcase_15 | AC | 13 ms
6,940 KB |
testcase_16 | AC | 42 ms
6,944 KB |
testcase_17 | AC | 17 ms
6,940 KB |
testcase_18 | AC | 29 ms
6,940 KB |
testcase_19 | AC | 40 ms
6,944 KB |
testcase_20 | AC | 10 ms
6,940 KB |
testcase_21 | AC | 14 ms
6,940 KB |
testcase_22 | AC | 11 ms
6,940 KB |
testcase_23 | AC | 23 ms
6,940 KB |
testcase_24 | AC | 21 ms
6,940 KB |
testcase_25 | AC | 36 ms
6,944 KB |
testcase_26 | AC | 26 ms
6,944 KB |
testcase_27 | AC | 26 ms
6,944 KB |
testcase_28 | AC | 25 ms
6,944 KB |
testcase_29 | AC | 26 ms
6,944 KB |
testcase_30 | AC | 27 ms
6,940 KB |
testcase_31 | AC | 25 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef long double ld; typedef pair<int,int> P; typedef pair<ll, int> PL; constexpr int mod = 1e9 + 7; constexpr int INF = 1e9; ll mod_pow(ll x, ll n, ll mod){ if(n == 0)return 1; ll res = mod_pow(x*x%mod,n/2,mod); if(n&1) res = res * x % mod; return res; } int main() { int n; cin >> n; vector<ll> a(n); rep(i,n) cin >> a[i]; vector<ll> cnt(n, 0); ll res = 1; int r = 0; ll now = 1; for (int l = 0; l < n; l++) { while (r < n && now * a[r] < INF) { now *= a[r]; r++; } int len = r - l; for (int i = l; i < r; i++) { cnt[i] += len; len--; } now /= a[l]; } for (int i = 0; i < n; i++) { res *= mod_pow(a[i], cnt[i], mod); res %= mod; } cout << res << endl; return 0; }