結果

問題 No.1237 EXP Multiple!
ユーザー googol_S0googol_S0
提出日時 2020-09-25 21:23:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 234 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 106,212 KB
最終ジャッジ日時 2024-06-28 06:04:44
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 73 ms
92,416 KB
testcase_02 AC 86 ms
106,212 KB
testcase_03 AC 96 ms
101,680 KB
testcase_04 AC 103 ms
102,136 KB
testcase_05 RE -
testcase_06 AC 73 ms
95,888 KB
testcase_07 RE -
testcase_08 AC 77 ms
97,496 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 73 ms
95,856 KB
testcase_12 AC 76 ms
96,768 KB
testcase_13 AC 77 ms
97,024 KB
testcase_14 AC 78 ms
97,024 KB
testcase_15 AC 77 ms
97,408 KB
testcase_16 AC 77 ms
97,536 KB
testcase_17 AC 76 ms
96,768 KB
testcase_18 AC 78 ms
97,024 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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