結果

問題 No.116 門松列(1)
ユーザー yamaghyamagh
提出日時 2015-08-23 20:25:00
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-18 13:04:00
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 80 ms
12,288 KB
testcase_02 AC 78 ms
12,288 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 79 ms
12,160 KB
testcase_05 AC 78 ms
12,160 KB
testcase_06 AC 79 ms
12,160 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 79 ms
12,160 KB
testcase_09 AC 83 ms
12,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 81 ms
12,160 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 79 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:6: warning: assigned but unused variable - y
Main.rb:5: warning: possibly useless use of - in void context
Syntax OK

ソースコード

diff #

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

cnt=0
N-3.times do |t|
  x,y,z=s=A.slice(t,3)
  next if s.uniq.size != 3 
  #puts "x:#{x} y:#{y} z:#{z} max:#{s.max} min:#{s.min}"
  cnt+=1 if (x!=s.max && x!=s.min) || (z!=s.max && z!=s.min)
end
p cnt
0