結果

問題 No.116 門松列(1)
ユーザー gigurururugigurururu
提出日時 2015-01-04 23:26:23
言語 Ruby
(3.4.1)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 96 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-25 00:55:14
合計ジャッジ時間 3,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
p gets.split.map(&:to_i).each_cons(3).count{|a|a.uniq.size>2&&a!=a.sort&&a!=a.sort.reverse}
0