結果

問題 No.116 門松列(1)
ユーザー yamaghyamagh
提出日時 2015-08-23 20:25:00
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 11,564 KB
実行使用メモリ 15,420 KB
最終ジャッジ日時 2023-09-25 16:36:44
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 83 ms
15,244 KB
testcase_02 AC 81 ms
15,252 KB
testcase_03 AC 81 ms
15,088 KB
testcase_04 AC 83 ms
15,144 KB
testcase_05 AC 84 ms
15,372 KB
testcase_06 AC 82 ms
15,088 KB
testcase_07 AC 82 ms
15,084 KB
testcase_08 AC 83 ms
15,352 KB
testcase_09 AC 82 ms
15,336 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 83 ms
15,152 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 83 ms
15,188 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