結果
問題 | No.1084 積の積 |
ユーザー | akun0716 |
提出日時 | 2020-06-20 11:04:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,374 bytes |
コンパイル時間 | 827 ms |
コンパイル使用メモリ | 87,092 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-03 16:59:05 |
合計ジャッジ時間 | 2,041 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 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 | 9 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 7 ms
5,376 KB |
testcase_13 | AC | 14 ms
5,480 KB |
testcase_14 | AC | 6 ms
5,376 KB |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | AC | 16 ms
5,480 KB |
testcase_17 | AC | 8 ms
5,376 KB |
testcase_18 | AC | 10 ms
5,376 KB |
testcase_19 | AC | 13 ms
5,376 KB |
testcase_20 | AC | 5 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 | 14 ms
5,376 KB |
testcase_26 | AC | 12 ms
5,476 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 12 ms
5,480 KB |
ソースコード
#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 double typedef 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; REP(i, N) { int a; cin >> a; if (a == 0) { cout << 0 << endl; return 0; } else if (a != 1) { if (co)A.push_back(pii(1, co)); A.push_back(pii(a, co)); co = 0; } else co++; } if (co)A.push_back(pii(1, co)); int ans = 1; REP(i, A.size()) { int j = i; int cnt = A[j].first; int tmp = cnt; int p = A[j].second; //cout << cnt << " " << p << endl; //cout << cnt << " " << p << endl; if (cnt == 1)continue; while (j < A.size() && INF > cnt) { if (A[j].first == 1) { //cout << cnt << " " << A[j].second << endl; ans *= modpow(cnt, A[j].second ); ans %= mod; j++; if (j < A.size()) { cnt *= A[j].first; } continue; } ans *= cnt; ans %= mod; ans *= modpow(cnt, p); ans %= mod; j++; if (j < A.size()) { cnt *= A[j].first; } if (cnt >= INF)break; } } cout << ans << endl; return 0; }