結果

問題 No.1237 EXP Multiple!
ユーザー takakintakakin
提出日時 2020-10-24 12:45:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,756 KB
最終ジャッジ日時 2024-07-21 15:10:43
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 94 ms
26,868 KB
testcase_02 AC 116 ms
32,660 KB
testcase_03 AC 120 ms
32,756 KB
testcase_04 AC 121 ms
32,620 KB
testcase_05 AC 90 ms
14,732 KB
testcase_06 AC 91 ms
14,736 KB
testcase_07 AC 93 ms
14,732 KB
testcase_08 AC 149 ms
14,736 KB
testcase_09 AC 90 ms
14,732 KB
testcase_10 AC 90 ms
14,736 KB
testcase_11 AC 89 ms
14,732 KB
testcase_12 AC 86 ms
14,736 KB
testcase_13 AC 147 ms
14,656 KB
testcase_14 AC 149 ms
14,732 KB
testcase_15 AC 148 ms
14,860 KB
testcase_16 AC 149 ms
14,736 KB
testcase_17 AC 145 ms
14,736 KB
testcase_18 AC 142 ms
14,736 KB
testcase_19 AC 89 ms
14,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
mod=10**9+7
if max(A)>=4:
	print(mod)
elif min(A)==0:
	print(-1)
else:
	F=[1,1,2,6]
	cur=1
	for a in A:
		cur*=pow(a,F[a])
		if cur>mod:
			print(mod)
			break
	else:
		print(mod%cur)
0