結果

問題 No.1237 EXP Multiple!
ユーザー simansiman
提出日時 2020-09-26 07:34:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,952 KB
最終ジャッジ日時 2024-06-28 16:49:10
合計ジャッジ時間 4,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 128 ms
22,016 KB
testcase_02 AC 146 ms
25,472 KB
testcase_03 AC 143 ms
25,856 KB
testcase_04 AC 143 ms
26,112 KB
testcase_05 AC 135 ms
25,728 KB
testcase_06 AC 140 ms
25,728 KB
testcase_07 AC 141 ms
25,600 KB
testcase_08 AC 250 ms
29,696 KB
testcase_09 AC 140 ms
25,728 KB
testcase_10 AC 142 ms
25,856 KB
testcase_11 AC 139 ms
25,600 KB
testcase_12 AC 142 ms
25,856 KB
testcase_13 AC 248 ms
29,952 KB
testcase_14 AC 251 ms
29,696 KB
testcase_15 AC 248 ms
29,696 KB
testcase_16 AC 254 ms
29,696 KB
testcase_17 AC 249 ms
29,952 KB
testcase_18 AC 250 ms
29,952 KB
testcase_19 AC 134 ms
25,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
MOD = 10 ** 9 + 7
min_a, max_a = A.minmax

if min_a == 0
  puts -1
  exit
end

if max_a >= 4
  puts MOD
  exit
end

res = 1

A.each do |a|
  res *= a.pow((1..a).inject(:*))

  if res > MOD
    puts MOD
    exit
  end
end

puts MOD % res
0