結果
問題 | No.1237 EXP Multiple! |
ユーザー | polyester |
提出日時 | 2020-09-26 00:47:59 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,371 bytes |
コンパイル時間 | 1,021 ms |
コンパイル使用メモリ | 141,116 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 08:43:31 |
合計ジャッジ時間 | 2,664 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 58 ms
5,376 KB |
testcase_02 | AC | 77 ms
5,376 KB |
testcase_03 | AC | 82 ms
5,376 KB |
testcase_04 | AC | 87 ms
5,376 KB |
testcase_05 | AC | 31 ms
5,376 KB |
testcase_06 | AC | 31 ms
5,376 KB |
testcase_07 | AC | 33 ms
5,376 KB |
testcase_08 | AC | 32 ms
5,376 KB |
testcase_09 | AC | 31 ms
5,376 KB |
testcase_10 | AC | 31 ms
5,376 KB |
testcase_11 | AC | 31 ms
5,376 KB |
testcase_12 | AC | 32 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 31 ms
5,376 KB |
testcase_15 | AC | 31 ms
5,376 KB |
testcase_16 | AC | 32 ms
5,376 KB |
testcase_17 | AC | 32 ms
5,376 KB |
testcase_18 | AC | 32 ms
5,376 KB |
testcase_19 | AC | 31 ms
5,376 KB |
ソースコード
#include <algorithm> #include <cmath> #include <cstdio> #include <functional> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <vector> using namespace std; using ll = long long; ll limit = 1000000007; ll modpow(ll x, ll n) { ll ans = 1; while(n > 0) { if(n % 2 == 1) { ans *= x; // ans %= MOD; if(ans > limit) { return -1; } } x *= x; // x %= MOD; if(x > limit && n > 1) { return -1; } n >>= 1; } return ans; } int main() { int n; cin >> n; ll num = 1; vector<int> input(n); for(int i = 0; i < n; i++) { cin >> input[i]; } if(*min_element(input.begin(), input.end()) == 0) { cout << -1 << '\n'; return 0; } for(int i = 0; i < n; i++) { ll tmp, a, cnt = 1; a = input[i]; if(a < 2) { continue; } tmp = a; while(tmp--) { cnt *= (tmp + 1); if(num * modpow(a, cnt) > limit || modpow(a, cnt) == -1) { cout << limit << '\n'; return 0; } } num *= modpow(a, cnt); if(num > limit) { cout << limit << '\n'; return 0; } else if(num < 0) { cout << limit << '\n'; return 0; } } if(limit % num == 0) { cout << -1 << '\n'; } else { cout << limit % num << '\n'; } return 0; }