結果

問題 No.1237 EXP Multiple!
ユーザー nawawannawawan
提出日時 2020-09-25 22:16:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 1,123 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 69,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 08:34:59
合計ジャッジ時間 1,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
const int MAX = 410000;
const int MOD = 1000000007;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin >> N;
    vector<long long> A(N);
    for(int i = 0; i < N; i++) cin >> A[i];
    int flag = 0;
    for(int i = 0; i < N; i++){
        if(A[i] == 0) flag = 1;
    }
    if(flag == 1){
        cout << -1 << endl;
        return 0;
    }
    for(int i = 0; i < N; i++){
        if(A[i] >= 4) flag = 1;
    }
    if(flag == 1){
        cout << MOD << endl;
        return 0;
    }
    vector<long long> kai(4);
    for(int i = 0; i < 4; i++){
        if(i == 0) kai[i] = 1;
        else kai[i] = kai[i - 1] * i;
    }
    long long temp = 1;
    for(int i = 0; i < N; i++){
        long long res = 1;
        long long cnt = kai[A[i]];
        long long x = A[i];
        while(cnt > 0){
            if(cnt & 1) res *= x;
            x = x * x;
            cnt >>= 1;
        }
        temp *= res;
        if(temp > MOD){
            cout << MOD << endl;
            return 0;
        }
    }
    cout << MOD % temp << endl;
}
0