結果

問題 No.406 鴨等間隔の法則
ユーザー kuuso1kuuso1
提出日時 2016-08-16 08:09:09
言語 F#
(F# 4.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 9,666 ms
コンパイル使用メモリ 188,836 KB
実行使用メモリ 49,664 KB
最終ジャッジ日時 2024-07-07 11:38:08
合計ジャッジ時間 14,161 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
37,872 KB
testcase_01 AC 68 ms
30,080 KB
testcase_02 AC 69 ms
30,336 KB
testcase_03 AC 66 ms
29,940 KB
testcase_04 AC 110 ms
45,936 KB
testcase_05 AC 84 ms
36,224 KB
testcase_06 AC 85 ms
36,608 KB
testcase_07 AC 85 ms
36,864 KB
testcase_08 AC 108 ms
45,824 KB
testcase_09 AC 112 ms
46,720 KB
testcase_10 AC 87 ms
38,016 KB
testcase_11 AC 103 ms
44,672 KB
testcase_12 AC 90 ms
38,912 KB
testcase_13 AC 88 ms
38,400 KB
testcase_14 AC 118 ms
47,216 KB
testcase_15 AC 70 ms
31,104 KB
testcase_16 AC 75 ms
31,616 KB
testcase_17 AC 73 ms
31,104 KB
testcase_18 AC 75 ms
31,828 KB
testcase_19 AC 76 ms
31,872 KB
testcase_20 AC 78 ms
32,640 KB
testcase_21 AC 79 ms
33,152 KB
testcase_22 AC 84 ms
34,688 KB
testcase_23 AC 92 ms
39,168 KB
testcase_24 AC 113 ms
44,288 KB
testcase_25 AC 114 ms
47,088 KB
testcase_26 AC 127 ms
49,264 KB
testcase_27 AC 94 ms
42,880 KB
testcase_28 AC 106 ms
46,848 KB
testcase_29 AC 127 ms
49,664 KB
testcase_30 AC 126 ms
49,280 KB
testcase_31 AC 111 ms
46,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (234 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
type Sol() =
    member this.Solve() = 
        let N = stdin.ReadLine() |> int
        let A = stdin.ReadLine().Split(' ') |> Array.map int |> Array.sort 
        let pairA = Seq.pairwise A |> Seq.map (fun (x,y) -> (y - x)) |> Seq.distinct
        let yesno = ((Seq.distinct A |> Seq.length) = N) && (Seq.length pairA) = 1
        if yesno = true then Console.WriteLine("YES") else Console.WriteLine("NO") 

let mySol = new Sol()
mySol.Solve()
0