結果
問題 | No.1084 積の積 |
ユーザー | akun0716 |
提出日時 | 2020-06-19 22:54:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,348 bytes |
コンパイル時間 | 693 ms |
コンパイル使用メモリ | 87,264 KB |
実行使用メモリ | 5,484 KB |
最終ジャッジ日時 | 2024-07-03 15:22:25 |
合計ジャッジ時間 | 2,005 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 7 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 13 ms
5,452 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 13 ms
5,480 KB |
testcase_14 | AC | 6 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | AC | 14 ms
5,376 KB |
testcase_17 | AC | 6 ms
5,376 KB |
testcase_18 | AC | 9 ms
5,376 KB |
testcase_19 | AC | 12 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | AC | 6 ms
5,376 KB |
testcase_22 | AC | 5 ms
5,376 KB |
testcase_23 | AC | 9 ms
5,376 KB |
testcase_24 | AC | 8 ms
5,376 KB |
testcase_25 | AC | 13 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <iostream>#include<vector>#include<algorithm>#include<string>#include<map>#include<set>#include<stack>#include<queue>#include<math.h>using namespace std;typedef long long ll;#define int long long#define double long doubletypedef vector<int> VI;typedef pair<int, int> pii;typedef vector<pii> VP;typedef vector<string> VS;typedef priority_queue<int> PQ;template<class T>bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; }template<class T>bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; }#define fore(i,a) for(auto &i:a)#define REP(i,n) for(int i=0;i<n;i++)#define eREP(i,n) for(int i=0;i<=n;i++)#define FOR(i,a,b) for(int i=(a);i<(b);++i)#define eFOR(i,a,b) for(int i=(a);i<=(b);++i)#define SORT(c) sort((c).begin(),(c).end())#define rSORT(c) sort((c).rbegin(),(c).rend())#define LB(x,a) lower_bound((x).begin(),(x).end(),(a))#define UB(x,a) upper_bound((x).begin(),(x).end(),(a))#define INF 1000000000#define LLINF 9223372036854775807#define mod 1000000007#define mo 1000000007#define eps 1e-12//priority_queue<int,vector<int>, greater<int> > q2;long long modpow(long long a, long long n) {long long res = 1;while (n > 0) {if (n & 1) res = res * a % mo;a = a * a % mo;n >>= 1;}return res;}long long modinv(long long a) {return modpow(a, mod - 2);}signed main() {cin.tie(0);ios::sync_with_stdio(false);int N; cin >> N;VP A;int co = 0;bool op = 0;REP(i, N) {int a; cin >> a;if (a == 0) {op = 1;}else if (a != 1) {if (A.size())A.back().second += co;if (co)A.push_back(pii(1, co));A.push_back(pii(a, co));co = 0;}else co++;}//if (A.size())A.back().second += co;if (co)A.push_back(pii(1, co));if (op) {cout << 0 << endl;return 0;}int ans = 1;REP(i, A.size()) {int j = i;int cnt = A[j].first;int p = A[j].second;if (cnt == 1)continue;while (j < A.size() && INF > cnt) {if (A[j].first == 1) {ans *= modpow(cnt, A[j].second);ans %= mod;j++;continue;}//cout << j << endl;ans *= cnt;ans %= mod;ans *= modpow(cnt, p);ans %= mod;//cout << cnt << " " << p << endl;j++;if (j < A.size()) {cnt *= A[j].first;}if (cnt >= INF)break;}}cout << ans << endl;return 0;}