結果

問題 No.406 鴨等間隔の法則
ユーザー taktak
提出日時 2018-04-13 15:13:38
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 6,851 ms
コンパイル使用メモリ 188,060 KB
実行使用メモリ 48,000 KB
最終ジャッジ日時 2024-06-26 21:40:47
合計ジャッジ時間 11,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
39,168 KB
testcase_01 AC 74 ms
30,976 KB
testcase_02 AC 76 ms
31,324 KB
testcase_03 WA -
testcase_04 AC 113 ms
46,848 KB
testcase_05 AC 95 ms
38,016 KB
testcase_06 AC 95 ms
38,400 KB
testcase_07 AC 96 ms
38,528 KB
testcase_08 AC 111 ms
46,588 KB
testcase_09 AC 116 ms
47,744 KB
testcase_10 AC 96 ms
38,912 KB
testcase_11 AC 109 ms
45,048 KB
testcase_12 AC 98 ms
39,936 KB
testcase_13 AC 97 ms
40,056 KB
testcase_14 AC 110 ms
45,552 KB
testcase_15 WA -
testcase_16 AC 79 ms
32,896 KB
testcase_17 AC 78 ms
32,000 KB
testcase_18 AC 83 ms
32,640 KB
testcase_19 AC 81 ms
32,768 KB
testcase_20 AC 85 ms
33,920 KB
testcase_21 AC 85 ms
34,048 KB
testcase_22 AC 88 ms
35,196 KB
testcase_23 AC 100 ms
40,448 KB
testcase_24 AC 108 ms
44,160 KB
testcase_25 AC 119 ms
47,836 KB
testcase_26 AC 117 ms
47,708 KB
testcase_27 WA -
testcase_28 AC 111 ms
47,872 KB
testcase_29 AC 115 ms
47,744 KB
testcase_30 AC 115 ms
47,360 KB
testcase_31 AC 115 ms
47,228 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)
|> Array.distinct
|> Array.length
|> function | 1 -> "YES" | _ -> "NO"
|> printfn "%s"
0