結果

問題 No.1237 EXP Multiple!
ユーザー FromBooskaFromBooska
提出日時 2023-02-15 15:22:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,568 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 104,112 KB
最終ジャッジ日時 2024-07-18 00:37:42
合計ジャッジ時間 13,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,284 KB
testcase_01 AC 93 ms
96,488 KB
testcase_02 AC 128 ms
100,252 KB
testcase_03 AC 129 ms
100,300 KB
testcase_04 AC 97 ms
100,700 KB
testcase_05 AC 73 ms
97,784 KB
testcase_06 AC 72 ms
99,104 KB
testcase_07 AC 75 ms
100,032 KB
testcase_08 AC 1,562 ms
103,856 KB
testcase_09 AC 70 ms
98,532 KB
testcase_10 AC 76 ms
99,000 KB
testcase_11 AC 72 ms
99,304 KB
testcase_12 AC 69 ms
98,772 KB
testcase_13 AC 1,566 ms
103,864 KB
testcase_14 AC 1,559 ms
103,792 KB
testcase_15 AC 1,554 ms
104,108 KB
testcase_16 AC 1,568 ms
104,084 KB
testcase_17 AC 1,541 ms
103,784 KB
testcase_18 AC 1,539 ms
104,112 KB
testcase_19 AC 72 ms
97,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
from collections import Counter
N = int(input())
A = list(map(int, input().split()))
A.sort()
if 0 in A:
    ans = -1
elif max(A) >= 4:
    ans = 10**9+7
else:
    product = 1
    for a in A:
        product *= pow(a, factorial(a))
        if product > 10**9+7:
            print(10**9+7)
            exit()
    ans = (10**9+7)%product
print(ans)
0