結果

問題 No.116 門松列(1)
ユーザー regeregeregerege
提出日時 2016-06-15 23:38:39
言語 F#
(F# 4.0)
結果
AC  
実行時間 359 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 12,298 ms
コンパイル使用メモリ 185,772 KB
実行使用メモリ 35,652 KB
最終ジャッジ日時 2024-06-25 01:18:18
合計ジャッジ時間 22,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
35,308 KB
testcase_01 AC 354 ms
35,392 KB
testcase_02 AC 351 ms
35,260 KB
testcase_03 AC 358 ms
34,892 KB
testcase_04 AC 351 ms
34,808 KB
testcase_05 AC 350 ms
35,060 KB
testcase_06 AC 348 ms
34,812 KB
testcase_07 AC 353 ms
35,256 KB
testcase_08 AC 351 ms
35,260 KB
testcase_09 AC 354 ms
35,136 KB
testcase_10 AC 348 ms
35,400 KB
testcase_11 AC 350 ms
35,504 KB
testcase_12 AC 350 ms
35,548 KB
testcase_13 AC 349 ms
34,820 KB
testcase_14 AC 346 ms
34,540 KB
testcase_15 AC 347 ms
34,588 KB
testcase_16 AC 348 ms
35,528 KB
testcase_17 AC 350 ms
35,288 KB
testcase_18 AC 350 ms
35,288 KB
testcase_19 AC 350 ms
35,276 KB
testcase_20 AC 350 ms
35,308 KB
testcase_21 AC 352 ms
35,312 KB
testcase_22 AC 352 ms
35,652 KB
testcase_23 AC 348 ms
34,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (279 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let _ = stdin.ReadLine()
let l = stdin.ReadLine().Split(' ') |> Seq.map int |> Seq.toList
let rec check a b c =
    (a <> b && b <> c && a <> c)
    && ((a > b && b < c) || (a < b && b > c))
let rec f cnt = function
    | a::b::c::xs ->
        let cnt = if check a b c then cnt + 1 else cnt
        f cnt ([b;c]@xs)
    | _ -> cnt
f 0 l
|> printfn "%d"
0