結果

問題 No.1237 EXP Multiple!
ユーザー laneguelanegue
提出日時 2020-09-26 12:14:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-06-28 22:37:26
合計ジャッジ時間 5,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 179 ms
23,168 KB
testcase_02 AC 206 ms
27,136 KB
testcase_03 AC 205 ms
27,520 KB
testcase_04 AC 178 ms
27,904 KB
testcase_05 AC 171 ms
27,136 KB
testcase_06 AC 171 ms
27,392 KB
testcase_07 AC 172 ms
27,264 KB
testcase_08 AC 285 ms
31,360 KB
testcase_09 AC 171 ms
27,264 KB
testcase_10 AC 175 ms
27,136 KB
testcase_11 AC 171 ms
27,392 KB
testcase_12 AC 169 ms
27,136 KB
testcase_13 AC 282 ms
31,232 KB
testcase_14 AC 283 ms
31,104 KB
testcase_15 AC 291 ms
31,232 KB
testcase_16 AC 290 ms
31,104 KB
testcase_17 AC 295 ms
31,232 KB
testcase_18 AC 286 ms
31,104 KB
testcase_19 AC 169 ms
27,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

M=10**9+7
N=gets.to_i
A=gets.split.map(&:to_i)
A.sort!
m=1
if A[0]==0
    puts -1
elsif A[-1]>3
    puts M
else
    A.each{|a|
        m*= a ** (1..a).inject(&:*)
        break if m>M
    }
    puts M%m
end
0