結果

問題 No.406 鴨等間隔の法則
ユーザー ichibanshiboriichibanshibori
提出日時 2016-08-06 18:06:42
言語 F#
(F# 4.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 14,614 ms
コンパイル使用メモリ 188,248 KB
実行使用メモリ 53,120 KB
最終ジャッジ日時 2024-07-07 11:31:18
合計ジャッジ時間 19,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
37,760 KB
testcase_01 AC 85 ms
31,360 KB
testcase_02 AC 86 ms
31,604 KB
testcase_03 AC 86 ms
31,616 KB
testcase_04 AC 121 ms
44,408 KB
testcase_05 AC 104 ms
37,120 KB
testcase_06 AC 103 ms
37,376 KB
testcase_07 AC 103 ms
37,632 KB
testcase_08 AC 120 ms
44,032 KB
testcase_09 AC 122 ms
45,048 KB
testcase_10 AC 104 ms
37,888 KB
testcase_11 AC 115 ms
42,880 KB
testcase_12 AC 106 ms
38,912 KB
testcase_13 AC 106 ms
38,656 KB
testcase_14 AC 147 ms
49,920 KB
testcase_15 AC 88 ms
32,504 KB
testcase_16 AC 89 ms
32,640 KB
testcase_17 AC 87 ms
31,872 KB
testcase_18 AC 88 ms
32,760 KB
testcase_19 AC 93 ms
33,536 KB
testcase_20 AC 98 ms
34,808 KB
testcase_21 AC 94 ms
33,536 KB
testcase_22 AC 104 ms
36,864 KB
testcase_23 AC 107 ms
39,284 KB
testcase_24 AC 137 ms
48,376 KB
testcase_25 AC 121 ms
44,928 KB
testcase_26 AC 153 ms
53,120 KB
testcase_27 AC 115 ms
45,184 KB
testcase_28 AC 117 ms
44,928 KB
testcase_29 AC 156 ms
53,120 KB
testcase_30 AC 154 ms
52,736 KB
testcase_31 AC 121 ms
44,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (303 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 doIt () =
    let _ = stdin.ReadLine ()
    let xlist = stdin.ReadLine () |> fun s -> s.Split () |> Seq.map int |> Seq.sort
    let dlist = xlist |> Seq.pairwise |> Seq.map (fun (x1, x2) -> x2 - x1) |> Seq.cache
    let d1 = Seq.head dlist

    (d1 > 0 && Seq.forall (fun d -> d = d1) dlist) |>
    (function | true -> "YES" | false -> "NO") |> printfn "%s"

doIt ()
0