結果

問題 No.406 鴨等間隔の法則
ユーザー pekempeypekempey
提出日時 2017-01-27 18:38:19
言語 F#
(F# 4.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 10,414 ms
コンパイル使用メモリ 193,468 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-07-07 11:57:45
合計ジャッジ時間 14,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
35,456 KB
testcase_01 AC 50 ms
29,568 KB
testcase_02 AC 48 ms
29,268 KB
testcase_03 AC 53 ms
29,304 KB
testcase_04 AC 80 ms
41,472 KB
testcase_05 AC 74 ms
34,816 KB
testcase_06 AC 64 ms
34,816 KB
testcase_07 AC 63 ms
35,200 KB
testcase_08 AC 79 ms
41,344 KB
testcase_09 AC 79 ms
42,112 KB
testcase_10 AC 67 ms
35,584 KB
testcase_11 AC 76 ms
40,184 KB
testcase_12 AC 66 ms
36,476 KB
testcase_13 AC 69 ms
35,968 KB
testcase_14 AC 76 ms
40,704 KB
testcase_15 AC 53 ms
30,208 KB
testcase_16 AC 53 ms
30,460 KB
testcase_17 AC 53 ms
30,208 KB
testcase_18 AC 53 ms
30,336 KB
testcase_19 AC 61 ms
30,848 KB
testcase_20 AC 60 ms
31,488 KB
testcase_21 AC 61 ms
31,488 KB
testcase_22 AC 66 ms
32,768 KB
testcase_23 AC 76 ms
36,608 KB
testcase_24 AC 76 ms
39,808 KB
testcase_25 AC 82 ms
42,368 KB
testcase_26 AC 83 ms
42,368 KB
testcase_27 AC 77 ms
42,624 KB
testcase_28 AC 75 ms
42,340 KB
testcase_29 AC 80 ms
42,360 KB
testcase_30 AC 77 ms
42,368 KB
testcase_31 AC 81 ms
41,728 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (252 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 solve x =
    let n = Array.length x
    let mutable mn = 1000000000
    let mutable mx = -1000000000
    for i in 0 .. n - 2 do
        mn <- min mn (x.[i + 1] - x.[i])
        mx <- max mx (x.[i + 1] - x.[i])
    if mn = mx && mx <> 0 then "YES" else "NO"
        

let n = System.Console.ReadLine() |> int
let x = System.Console.ReadLine().Split() |> Array.map int |> Array.sort

System.Console.WriteLine(solve x)


0