結果

問題 No.1237 EXP Multiple!
ユーザー first_vilfirst_vil
提出日時 2020-09-26 09:50:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 290 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,284 KB
最終ジャッジ日時 2024-06-28 19:36:22
合計ジャッジ時間 2,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 63 ms
96,032 KB
testcase_06 AC 66 ms
96,360 KB
testcase_07 AC 66 ms
95,616 KB
testcase_08 AC 70 ms
96,868 KB
testcase_09 AC 68 ms
96,160 KB
testcase_10 AC 66 ms
96,256 KB
testcase_11 AC 64 ms
96,508 KB
testcase_12 RE -
testcase_13 AC 67 ms
97,208 KB
testcase_14 AC 68 ms
97,340 KB
testcase_15 AC 66 ms
96,384 KB
testcase_16 AC 66 ms
96,520 KB
testcase_17 AC 68 ms
96,668 KB
testcase_18 AC 72 ms
96,768 KB
testcase_19 AC 65 ms
96,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
if min(a)==0:
  print(-1)
  exit(0)
if 4<=max(a):
  print(m)
  exit(0)
m=10**9+7
x=1
for i in a:
  if i==1:
    continue
  y=1
  for j in range(1,i+1):
    y*=j
  for k in range(y):
    x*=i
    if m<x:
      print(m)
      exit(0)
print(m%x)
0