結果

問題 No.1237 EXP Multiple!
ユーザー IHIH
提出日時 2020-09-26 21:27:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 107,256 KB
最終ジャッジ日時 2024-06-29 21:23:26
合計ジャッジ時間 14,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 77 ms
93,056 KB
testcase_02 AC 88 ms
107,256 KB
testcase_03 AC 94 ms
102,200 KB
testcase_04 AC 101 ms
102,112 KB
testcase_05 AC 73 ms
95,880 KB
testcase_06 AC 73 ms
96,384 KB
testcase_07 AC 72 ms
96,264 KB
testcase_08 WA -
testcase_09 AC 73 ms
95,816 KB
testcase_10 AC 74 ms
96,256 KB
testcase_11 AC 74 ms
97,208 KB
testcase_12 AC 72 ms
96,508 KB
testcase_13 AC 1,717 ms
103,404 KB
testcase_14 AC 1,700 ms
103,552 KB
testcase_15 AC 1,683 ms
103,564 KB
testcase_16 AC 1,715 ms
103,620 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 72 ms
95,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n = int(input())
a = list(map(int,input().split()))

if min(a) == 0:
  print(-1)
  exit()
elif max(a) >= 4:
  print(((10)**9)+7)
  exit()
else:
  ans = 1
  for i in range(n):
    tmp = math.factorial(a[i])
    ans *= a[i]*tmp
    if ans >= ((10)**9)+7:
      print((10**9)+7)
      exit()
  print(((10**9)+7)%ans)
0