結果

問題 No.1237 EXP Multiple!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-03 10:06:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-10-03 03:09:00
合計ジャッジ時間 3,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 73 ms
92,928 KB
testcase_02 AC 86 ms
107,648 KB
testcase_03 AC 97 ms
101,632 KB
testcase_04 AC 96 ms
101,632 KB
testcase_05 AC 73 ms
96,384 KB
testcase_06 AC 73 ms
96,256 KB
testcase_07 AC 74 ms
96,000 KB
testcase_08 AC 77 ms
97,024 KB
testcase_09 AC 71 ms
96,512 KB
testcase_10 AC 73 ms
96,384 KB
testcase_11 AC 74 ms
96,128 KB
testcase_12 AC 72 ms
95,744 KB
testcase_13 AC 76 ms
96,896 KB
testcase_14 AC 76 ms
97,664 KB
testcase_15 AC 75 ms
97,024 KB
testcase_16 AC 76 ms
97,408 KB
testcase_17 AC 76 ms
96,640 KB
testcase_18 AC 76 ms
97,152 KB
testcase_19 AC 73 ms
96,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main(n,a):
  mod=10**9+7
  if max(a)>=4:return mod
  if min(a)==0:return -1
  ary=[1,1]
  for i in range(2,max(a)+1):
    ary.append(ary[-1]*i)
  ret=1
  for x in a:
    ret*=pow(x,ary[x])
    if ret>mod:return mod
  return mod%ret
if __name__=='__main__':
  n=int(input())
  a=list(map(int,input().split()))
  print(main(n,a))
0