結果

問題 No.1237 EXP Multiple!
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-09-25 21:38:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,936 KB
最終ジャッジ日時 2024-06-28 08:31:21
合計ジャッジ時間 3,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 120 ms
26,772 KB
testcase_02 AC 155 ms
32,568 KB
testcase_03 AC 156 ms
32,936 KB
testcase_04 AC 108 ms
32,704 KB
testcase_05 AC 70 ms
14,028 KB
testcase_06 AC 72 ms
14,160 KB
testcase_07 AC 78 ms
14,028 KB
testcase_08 AC 154 ms
14,028 KB
testcase_09 AC 70 ms
13,900 KB
testcase_10 AC 74 ms
14,028 KB
testcase_11 AC 73 ms
14,024 KB
testcase_12 AC 147 ms
14,156 KB
testcase_13 AC 153 ms
14,028 KB
testcase_14 AC 152 ms
14,028 KB
testcase_15 AC 156 ms
14,032 KB
testcase_16 AC 159 ms
14,032 KB
testcase_17 AC 152 ms
14,032 KB
testcase_18 AC 151 ms
14,032 KB
testcase_19 AC 71 ms
13,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
n = int(input())
a = list(map(int, input().split()))
a.sort()
if 0 in a:
    exit(print(-1))
ans = 1
for i in range(n):
    if a[i] >= 18:
        exit(print(10 ** 9 + 7))
    ans *= pow(a[i], factorial(a[i]))
    if ans >= 10 ** 9 + 7:
        exit(print(10 ** 9 + 7))
print((10 ** 9 + 7) % ans)
0