結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 125 ms
26,896 KB
testcase_02 AC 160 ms
32,544 KB
testcase_03 AC 165 ms
32,684 KB
testcase_04 AC 108 ms
32,712 KB
testcase_05 WA -
testcase_06 AC 75 ms
13,908 KB
testcase_07 WA -
testcase_08 AC 152 ms
14,160 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 74 ms
14,028 KB
testcase_12 AC 156 ms
14,032 KB
testcase_13 AC 155 ms
14,032 KB
testcase_14 AC 151 ms
14,032 KB
testcase_15 AC 158 ms
13,900 KB
testcase_16 AC 151 ms
13,908 KB
testcase_17 AC 151 ms
14,032 KB
testcase_18 AC 152 ms
13,908 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
n = int(input())
a = list(map(int, input().split()))
a.sort()
if 0 in a:
    exit(print(0))
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