結果
問題 | No.1237 EXP Multiple! |
ユーザー | hgoto |
提出日時 | 2020-10-27 23:05:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 756 bytes |
コンパイル時間 | 2,111 ms |
コンパイル使用メモリ | 199,692 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 22:07:07 |
合計ジャッジ時間 | 2,924 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 12 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 11 ms
5,376 KB |
testcase_13 | AC | 13 ms
5,376 KB |
testcase_14 | AC | 13 ms
5,376 KB |
testcase_15 | AC | 13 ms
5,376 KB |
testcase_16 | AC | 12 ms
5,376 KB |
testcase_17 | AC | 13 ms
5,376 KB |
testcase_18 | AC | 12 ms
5,376 KB |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include <debug.hpp> #else #define debug(...) void() #endif int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; long long ans = 1; const int md = (int)1e9 + 7; auto fact = [](int n) { int ret = n; while (--n) ret *= n; return ret; }; auto pow = [](int n, int p) { int ret = 1; while (p--) ret *= n; return ret; }; while (n--) { int a; cin >> a; if (a >= 4) { cout << md << '\n'; return 0; } ans *= pow(a, fact(a)); if (ans == 0) { cout << -1 << '\n'; return 0; } if (ans >= md) { cout << md << '\n'; return 0; } } cout << md % ans << '\n'; return 0; }