結果

問題 No.406 鴨等間隔の法則
ユーザー taktak
提出日時 2018-04-13 15:19:09
言語 F#
(F# 4.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 11,327 ms
コンパイル使用メモリ 185,732 KB
実行使用メモリ 47,744 KB
最終ジャッジ日時 2024-07-07 12:23:01
合計ジャッジ時間 10,578 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
38,400 KB
testcase_01 AC 67 ms
31,104 KB
testcase_02 AC 67 ms
30,848 KB
testcase_03 AC 66 ms
30,720 KB
testcase_04 AC 98 ms
46,192 KB
testcase_05 AC 82 ms
37,760 KB
testcase_06 AC 81 ms
37,888 KB
testcase_07 AC 80 ms
38,124 KB
testcase_08 AC 98 ms
46,080 KB
testcase_09 AC 101 ms
47,360 KB
testcase_10 AC 82 ms
38,396 KB
testcase_11 AC 95 ms
44,660 KB
testcase_12 AC 83 ms
39,808 KB
testcase_13 AC 82 ms
39,552 KB
testcase_14 AC 99 ms
45,312 KB
testcase_15 AC 68 ms
31,740 KB
testcase_16 AC 69 ms
32,384 KB
testcase_17 AC 70 ms
31,872 KB
testcase_18 AC 70 ms
32,640 KB
testcase_19 AC 71 ms
32,384 KB
testcase_20 AC 74 ms
33,792 KB
testcase_21 AC 74 ms
34,048 KB
testcase_22 AC 77 ms
35,072 KB
testcase_23 AC 85 ms
40,064 KB
testcase_24 AC 96 ms
43,904 KB
testcase_25 AC 101 ms
47,344 KB
testcase_26 AC 104 ms
47,744 KB
testcase_27 AC 95 ms
47,360 KB
testcase_28 AC 97 ms
47,484 KB
testcase_29 AC 104 ms
47,488 KB
testcase_30 AC 105 ms
47,616 KB
testcase_31 AC 102 ms
46,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (245 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 #

stdin.ReadLine() |> ignore
stdin.ReadLine().Split() 
|> Array.map(int)
|> Array.sort
|> Array.pairwise
|> Array.map(fun (a,b) -> b-a)
|> function 
    | x when x |> Array.forall (fun x -> x<>0) -> 
        x
        |> Array.distinct
        |> Array.length
        |> function | 1 -> "YES" | _ -> "NO"
    | _ -> "NO"       
|> printfn "%s"    
0