結果

問題 No.1237 EXP Multiple!
ユーザー wakapaijazzwakapaijazz
提出日時 2020-10-01 03:27:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 197,740 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-20 23:59:16
合計ジャッジ時間 4,900 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    const int MOD = 1e9 + 7;
    int n; cin >> n;
    bool big = false;
    long long rem = 1;
    for(int i = 0; i < n; i++){
        int a; cin >> a;
        if(a == 0){
            cout << -1 << endl;
            return 0;
        }else if(a >= 4){
            big = true;
        }else{
            int f = 1;
            for(int j = 1; j <= a; j++){
                f *= j;
            }
            for(int j = 0; j < f; j++){
                rem *= a;
            }
            if(rem > MOD){
                big = true;
            }
        }
    }
    if(big) cout << MOD << endl;
    else cout << MOD % rem << endl;
    return 0;
}
0