結果

問題 No.1237 EXP Multiple!
ユーザー NagisaNagisa
提出日時 2020-09-25 23:36:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,800 KB
最終ジャッジ日時 2024-06-28 08:39:44
合計ジャッジ時間 3,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 83 ms
26,156 KB
testcase_02 AC 102 ms
31,824 KB
testcase_03 AC 103 ms
32,800 KB
testcase_04 AC 108 ms
32,704 KB
testcase_05 AC 68 ms
14,148 KB
testcase_06 AC 73 ms
14,144 KB
testcase_07 AC 70 ms
14,272 KB
testcase_08 AC 139 ms
14,272 KB
testcase_09 AC 70 ms
14,268 KB
testcase_10 AC 69 ms
14,144 KB
testcase_11 AC 71 ms
14,148 KB
testcase_12 AC 130 ms
14,276 KB
testcase_13 AC 140 ms
14,272 KB
testcase_14 AC 134 ms
14,144 KB
testcase_15 AC 136 ms
14,088 KB
testcase_16 AC 136 ms
14,272 KB
testcase_17 AC 138 ms
14,148 KB
testcase_18 AC 135 ms
14,272 KB
testcase_19 AC 74 ms
14,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
MOD = 10**9 + 7
N = int(input())
A = list(map(int,input().split()))
if 0 in A:
    print(-1)
    exit(0)
ans = 1
for e in A:
    if e > 10:
        print(MOD)
        exit(0)
    ans *= pow(e,factorial(e))
    if ans > MOD:
        print(MOD)
        exit(0)
if ans == 0:
    print(-1)
else:
    print(MOD%ans)
0