結果

問題 No.118 門松列(2)
ユーザー zazaboonzazaboon
提出日時 2017-05-23 17:01:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 263 ms / 5,000 ms
コード長 364 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-09-19 11:41:07
合計ジャッジ時間 7,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
13,184 KB
testcase_01 AC 253 ms
19,712 KB
testcase_02 AC 256 ms
19,200 KB
testcase_03 AC 257 ms
19,584 KB
testcase_04 AC 262 ms
19,840 KB
testcase_05 AC 263 ms
19,968 KB
testcase_06 AC 219 ms
12,672 KB
testcase_07 AC 216 ms
12,672 KB
testcase_08 AC 226 ms
12,800 KB
testcase_09 AC 252 ms
18,944 KB
testcase_10 AC 226 ms
13,952 KB
testcase_11 AC 230 ms
15,104 KB
testcase_12 AC 218 ms
14,208 KB
testcase_13 AC 228 ms
13,440 KB
testcase_14 AC 249 ms
19,200 KB
testcase_15 AC 224 ms
13,056 KB
testcase_16 AC 235 ms
16,128 KB
testcase_17 AC 226 ms
13,184 KB
testcase_18 AC 231 ms
15,232 KB
testcase_19 AC 252 ms
16,384 KB
testcase_20 AC 240 ms
16,256 KB
testcase_21 AC 250 ms
18,688 KB
testcase_22 AC 223 ms
14,080 KB
testcase_23 AC 244 ms
18,688 KB
testcase_24 AC 219 ms
15,616 KB
testcase_25 AC 231 ms
16,640 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:5: warning: assigned but unused variable - n
Main.rb:9: warning: assigned but unused variable - low
Main.rb:12: warning: assigned but unused variable - sum
Syntax OK

ソースコード

diff #

# Here your code !
def jj(a,b,c)
  (a > b and c > a)
end
n = gets.chomp.to_i
a = gets.chomp.split.map &:to_i
aa = Array.new(101,0)
a.each{|d|aa[d] += 1}
low = 0
ans = 0
c = aa.count{|d| d!=0}
sum = c
aa.each.with_index do |d,i|
  aa.each.with_index do |dd,j|
    aa.each.with_index do |ddd,k|
      ans += d*dd*ddd if(jj(i,j,k))
    end
  end
end
p ans % (10**9+7)
0