結果

問題 No.1237 EXP Multiple!
ユーザー googol_S0googol_S0
提出日時 2020-09-25 21:47:14
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 202 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 106,128 KB
最終ジャッジ日時 2024-06-28 08:32:00
合計ジャッジ時間 2,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 72 ms
92,544 KB
testcase_02 AC 91 ms
106,128 KB
testcase_03 AC 97 ms
101,504 KB
testcase_04 AC 100 ms
101,760 KB
testcase_05 AC 79 ms
96,768 KB
testcase_06 AC 74 ms
95,104 KB
testcase_07 AC 81 ms
96,896 KB
testcase_08 AC 81 ms
96,896 KB
testcase_09 AC 79 ms
97,536 KB
testcase_10 AC 80 ms
97,152 KB
testcase_11 AC 75 ms
95,372 KB
testcase_12 AC 84 ms
97,024 KB
testcase_13 AC 80 ms
97,408 KB
testcase_14 AC 81 ms
97,152 KB
testcase_15 AC 80 ms
96,896 KB
testcase_16 AC 78 ms
96,896 KB
testcase_17 AC 79 ms
97,280 KB
testcase_18 AC 79 ms
96,768 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
F=[1,1,2,6]
P=1
m=10**9+7
for i in range(N):
  if A[i]>3:print(m);exit()
  P*=pow(A[i],F[A[i]])
  if P>m:print(m);exit()
if P==0:print(-1)
else:print(m%P)
0