結果

問題 No.1237 EXP Multiple!
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-28 04:13:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,733 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 107,492 KB
最終ジャッジ日時 2024-07-01 00:32:51
合計ジャッジ時間 14,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,536 KB
testcase_01 AC 97 ms
95,932 KB
testcase_02 AC 123 ms
107,492 KB
testcase_03 AC 131 ms
101,748 KB
testcase_04 AC 98 ms
102,360 KB
testcase_05 AC 71 ms
97,092 KB
testcase_06 AC 73 ms
96,256 KB
testcase_07 AC 79 ms
97,736 KB
testcase_08 AC 1,720 ms
103,648 KB
testcase_09 AC 72 ms
96,328 KB
testcase_10 AC 78 ms
98,080 KB
testcase_11 AC 74 ms
97,356 KB
testcase_12 AC 74 ms
96,400 KB
testcase_13 AC 1,706 ms
103,448 KB
testcase_14 AC 1,705 ms
103,544 KB
testcase_15 AC 1,717 ms
103,680 KB
testcase_16 AC 1,722 ms
103,684 KB
testcase_17 AC 1,733 ms
103,612 KB
testcase_18 AC 1,713 ms
103,592 KB
testcase_19 AC 71 ms
96,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
import math
A.sort()
if A[0] == 0:
    print(-1)
elif max(A) >= 4:
    print(10**9+7)
else:
    t = 1
    for a in A:
        t *= a**math.factorial(a)
        if t >= 10**9+7:
            print(10**9+7)
            exit()
    else:
        print((10**9+7)%t)
0