結果

問題 No.1237 EXP Multiple!
ユーザー gemmarogemmaro
提出日時 2020-10-09 06:17:17
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 281 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 97,580 KB
最終ジャッジ日時 2024-07-20 06:38:21
合計ジャッジ時間 5,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
17,664 KB
testcase_01 AC 166 ms
22,016 KB
testcase_02 AC 187 ms
25,472 KB
testcase_03 AC 190 ms
25,728 KB
testcase_04 AC 190 ms
26,112 KB
testcase_05 AC 164 ms
25,472 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

L = 10**9 + 7

class Integer
  def fact
    (1..self).reduce(:*)
  end
end

def solve
  if A.any?(&:zero?)
    -1
  elsif A.max >= 4
    L
  else
    L % A.map { _1**_1.fact }.reduce(:*)
  end
end

N = gets.to_i
A = gets.split.map(&:to_i)
puts solve
0