結果

問題 No.1237 EXP Multiple!
ユーザー gemmarogemmaro
提出日時 2020-10-09 06:26:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-07-20 06:38:27
合計ジャッジ時間 5,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 162 ms
22,144 KB
testcase_02 AC 188 ms
25,472 KB
testcase_03 AC 190 ms
25,856 KB
testcase_04 AC 189 ms
26,112 KB
testcase_05 AC 166 ms
25,728 KB
testcase_06 AC 183 ms
25,600 KB
testcase_07 AC 168 ms
25,600 KB
testcase_08 AC 313 ms
28,672 KB
testcase_09 AC 162 ms
25,856 KB
testcase_10 AC 166 ms
25,728 KB
testcase_11 AC 181 ms
25,472 KB
testcase_12 AC 184 ms
25,856 KB
testcase_13 AC 312 ms
29,696 KB
testcase_14 AC 306 ms
28,928 KB
testcase_15 AC 307 ms
29,568 KB
testcase_16 AC 310 ms
28,928 KB
testcase_17 AC 310 ms
28,928 KB
testcase_18 AC 307 ms
29,568 KB
testcase_19 AC 184 ms
25,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.reduce(1) do |result, item|
      x = result * item**item.fact
      x > L ? (return L) : x
    end)
  end
end

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