結果

問題 No.1237 EXP Multiple!
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-09-25 23:36:40
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 311 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 105,828 KB
最終ジャッジ日時 2024-06-28 08:18:02
合計ジャッジ時間 22,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,604 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 AC 1,746 ms
103,436 KB
testcase_15 AC 1,744 ms
102,628 KB
testcase_16 AC 1,758 ms
103,000 KB
testcase_17 AC 1,744 ms
102,944 KB
testcase_18 AC 1,752 ms
102,672 KB
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import math
mod = 10**9+7

N = int(input())

A = list(map(int,stdin.readline().split()))

now = 1

for i in A:

    if i > 10 or now > 10**9+7:
        print (10**9+7)
        sys.exit()

    now *= i ** math.factorial(i)

ans = mod % now
if ans == 0:
    print (-1)
else:
    print (ans)
0