結果

問題 No.1237 EXP Multiple!
ユーザー nasubi24nasubi24
提出日時 2020-09-25 23:39:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,136 KB
最終ジャッジ日時 2024-06-28 08:40:22
合計ジャッジ時間 3,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 83 ms
26,132 KB
testcase_02 AC 111 ms
31,804 KB
testcase_03 AC 103 ms
32,632 KB
testcase_04 AC 103 ms
33,136 KB
testcase_05 AC 69 ms
14,620 KB
testcase_06 AC 72 ms
14,612 KB
testcase_07 AC 70 ms
14,612 KB
testcase_08 AC 213 ms
14,740 KB
testcase_09 AC 69 ms
14,612 KB
testcase_10 AC 69 ms
14,616 KB
testcase_11 AC 73 ms
14,740 KB
testcase_12 AC 184 ms
14,616 KB
testcase_13 AC 208 ms
14,576 KB
testcase_14 AC 206 ms
14,740 KB
testcase_15 AC 207 ms
14,484 KB
testcase_16 AC 207 ms
14,588 KB
testcase_17 AC 203 ms
14,516 KB
testcase_18 AC 204 ms
14,616 KB
testcase_19 AC 72 ms
14,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
if 0 in a:
    print(-1)
else:
    ans=1
    cnt=0
    for i in range(n):
        cnt2=1
        for j in range(1,a[i]+1):
            cnt2*=j
            if cnt2>10**9+7:
                cnt=1
                break
        if cnt==1:
            break
        ans*=a[i]**cnt2
        if ans>10**9+7:
            cnt=1
            break
    if cnt==1:
        print(10**9+7)
    else:
        print((10**9+7)%ans)
0