結果

問題 No.1237 EXP Multiple!
ユーザー itm_techitm_tech
提出日時 2020-09-25 23:45:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 284 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-06-28 08:40:37
合計ジャッジ時間 3,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 95 ms
26,260 KB
testcase_02 AC 126 ms
32,064 KB
testcase_03 AC 118 ms
32,848 KB
testcase_04 AC 119 ms
33,280 KB
testcase_05 AC 144 ms
14,740 KB
testcase_06 AC 85 ms
14,736 KB
testcase_07 AC 145 ms
14,680 KB
testcase_08 AC 148 ms
14,736 KB
testcase_09 AC 147 ms
14,868 KB
testcase_10 AC 154 ms
14,736 KB
testcase_11 AC 86 ms
14,740 KB
testcase_12 AC 86 ms
14,864 KB
testcase_13 AC 147 ms
14,868 KB
testcase_14 AC 143 ms
14,864 KB
testcase_15 AC 148 ms
14,740 KB
testcase_16 AC 145 ms
14,736 KB
testcase_17 AC 142 ms
14,740 KB
testcase_18 AC 142 ms
14,740 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
n = int(input())
a = [int(i) for i in input().split()]
mod = 10 ** 9 + 7
if max(a) >= 4:
    print(mod)
    exit()
ans = 1

for i in a:
    ans *= pow(i, factorial(i))
    if ans >= mod:
        print(mod)
        exit()
print(-1 if ans == 0 else mod % ans)
0