結果
問題 | No.335 門松宝くじ |
ユーザー | ciel |
提出日時 | 2016-01-16 00:09:16 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 514 bytes |
コンパイル時間 | 49 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 19,232 KB |
最終ジャッジ日時 | 2024-09-19 19:39:53 |
合計ジャッジ時間 | 4,133 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
19,104 KB |
testcase_01 | AC | 87 ms
12,160 KB |
testcase_02 | AC | 83 ms
12,288 KB |
testcase_03 | AC | 85 ms
12,032 KB |
testcase_04 | AC | 88 ms
12,160 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
#!/usr/bin/ruby def value(a) idxes={} a.each_with_index{|e,i|idxes[e]=i} ret=0 1.upto(N-1){|i| idxi=idxes[i] (i+1).upto(N){|j| idxj=idxes[j] r=0 (0..N-1).each{|idxk| next if idxk==idxi || idxk==idxj b=[[idxi,a[idxi]],[idxj,a[idxj]],[idxk,a[idxk]]].sort if (b[0][1]<b[1][1]&&b[2][1]<b[1][1]) || (b[0][1]>b[1][1]&&b[2][1]>b[1][1]) r=[r,a[idxk]].max end } ret+=[r,i,j].max if r>0 } } ret end N,M=gets.split.map(&:to_i) p M.times.max_by{|i|value(gets.split.map(&:to_i))}