結果

問題 No.406 鴨等間隔の法則
ユーザー guriceringuricerin
提出日時 2020-01-10 15:26:15
言語 F#
(F# 4.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 1,102 bytes
コンパイル時間 11,673 ms
コンパイル使用メモリ 187,672 KB
実行使用メモリ 44,928 KB
最終ジャッジ日時 2024-07-07 12:45:58
合計ジャッジ時間 15,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
36,728 KB
testcase_01 AC 54 ms
29,824 KB
testcase_02 AC 53 ms
29,696 KB
testcase_03 AC 53 ms
29,824 KB
testcase_04 AC 103 ms
43,648 KB
testcase_05 AC 78 ms
35,968 KB
testcase_06 AC 79 ms
36,224 KB
testcase_07 AC 82 ms
36,352 KB
testcase_08 AC 103 ms
43,648 KB
testcase_09 AC 108 ms
44,416 KB
testcase_10 AC 83 ms
36,864 KB
testcase_11 AC 99 ms
42,240 KB
testcase_12 AC 85 ms
37,888 KB
testcase_13 AC 84 ms
37,760 KB
testcase_14 AC 102 ms
42,604 KB
testcase_15 AC 59 ms
31,104 KB
testcase_16 AC 60 ms
31,104 KB
testcase_17 AC 57 ms
30,592 KB
testcase_18 AC 62 ms
31,360 KB
testcase_19 AC 63 ms
31,872 KB
testcase_20 AC 66 ms
32,512 KB
testcase_21 AC 65 ms
32,384 KB
testcase_22 AC 72 ms
33,792 KB
testcase_23 AC 86 ms
38,272 KB
testcase_24 AC 96 ms
41,580 KB
testcase_25 AC 107 ms
44,928 KB
testcase_26 AC 110 ms
44,800 KB
testcase_27 AC 94 ms
44,672 KB
testcase_28 AC 105 ms
44,928 KB
testcase_29 AC 109 ms
44,672 KB
testcase_30 AC 108 ms
44,396 KB
testcase_31 AC 109 ms
44,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (207 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 #

open System
open System.Collections.Generic

[<AutoOpen>]
module Cin =
    let read f = stdin.ReadLine() |> f
    let reada f = stdin.ReadLine().Split() |> Array.map f
    let readChars() = read string |> Seq.toArray
    let readInts() = readChars() |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

[<AutoOpen>]
module Cout =
    let writer = new IO.StreamWriter(new IO.BufferedStream(Console.OpenStandardOutput()))
    let print (s: string) = writer.Write s
    let println (s: string) = writer.WriteLine s
    let inline puts (s: ^a) = string s |> println

let solve() =
    let n = read int
    let xs = reada int64 |> Array.sort

    let ok1 = Array.tail xs |> Array.forall (fun x -> x <> xs.[0])
    let mutable ok2 = true
    for i in 0 .. n - 3 do
        let d1 = xs.[i] - xs.[i + 1] |> abs
        let d2 = xs.[i + 1] - xs.[i + 2] |> abs
        if d1 <> d2 then ok2 <- false

    if ok1 && ok2 then "YES" else "NO"
    |> puts

    ()

[<EntryPoint>]
let main _ =
    try
        solve()
    with e -> printfn "%s" (e.ToString())
    writer.Close()
    0 // return an integer exit code
0