結果

問題 No.1237 EXP Multiple!
ユーザー 259_Momone259_Momone
提出日時 2020-09-25 22:48:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 203,124 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 08:37:44
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 58 ms
5,376 KB
testcase_02 AC 79 ms
5,376 KB
testcase_03 AC 80 ms
5,376 KB
testcase_04 AC 86 ms
5,376 KB
testcase_05 AC 32 ms
5,376 KB
testcase_06 AC 32 ms
5,376 KB
testcase_07 AC 34 ms
5,376 KB
testcase_08 AC 33 ms
5,376 KB
testcase_09 AC 32 ms
5,376 KB
testcase_10 AC 33 ms
5,376 KB
testcase_11 AC 33 ms
5,376 KB
testcase_12 AC 32 ms
5,376 KB
testcase_13 AC 33 ms
5,376 KB
testcase_14 AC 33 ms
5,376 KB
testcase_15 AC 33 ms
5,376 KB
testcase_16 AC 33 ms
5,376 KB
testcase_17 AC 33 ms
5,376 KB
testcase_18 AC 33 ms
5,376 KB
testcase_19 AC 32 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

int main(){
    using namespace std;
    constexpr unsigned long MOD{1000000007};
    unsigned long N;
    cin >> N;
    vector<unsigned long> A(N);
    for(auto&& i : A)cin >> i;
    if(any_of(begin(A), end(A), [](const auto& i){return i == 0;}))return 0 & puts("-1");
    if(any_of(begin(A), end(A), [](const auto& i){return i >= 4;}))return 0 & puts("1000000007");
    unsigned long ans{1};
    for(const auto& i : A){
        for(unsigned long j{[](const auto& x){unsigned long ret{1}; for(unsigned long i{1}; i <= x; ++i)ret *= i;return ret;}(i)}; j--; )ans *= i;
        if(ans > MOD)return 0 & puts("1000000007");
    }
    cout << MOD % ans << endl;
    return 0;
}
0