結果

問題 No.1237 EXP Multiple!
ユーザー ibyiby
提出日時 2020-11-27 02:19:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,168 KB
最終ジャッジ日時 2024-07-23 21:16:53
合計ジャッジ時間 3,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 92 ms
26,272 KB
testcase_02 AC 113 ms
31,816 KB
testcase_03 AC 114 ms
32,648 KB
testcase_04 AC 116 ms
33,168 KB
testcase_05 AC 70 ms
14,756 KB
testcase_06 AC 82 ms
14,580 KB
testcase_07 AC 73 ms
14,632 KB
testcase_08 AC 146 ms
14,632 KB
testcase_09 AC 69 ms
14,636 KB
testcase_10 AC 70 ms
14,756 KB
testcase_11 AC 84 ms
14,628 KB
testcase_12 AC 82 ms
14,628 KB
testcase_13 AC 141 ms
14,620 KB
testcase_14 AC 146 ms
14,632 KB
testcase_15 AC 149 ms
14,628 KB
testcase_16 AC 147 ms
14,756 KB
testcase_17 AC 144 ms
14,628 KB
testcase_18 AC 148 ms
14,632 KB
testcase_19 AC 80 ms
14,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
MOD = 10**9 + 7
n = int(input())
a = list(map(int, input().split()))
if any(v == 0 for v in a):
    print(-1)
    exit()
if max(a) > 3:
    print(MOD)
    exit()
else:
    ans = 1
    for v in a:
        ans *= pow(v, math.factorial(v))
        if ans > MOD:
            print(MOD)
            exit()
    print(MOD % ans)
    exit()
0