結果

問題 No.135 とりあえず1次元の問題
ユーザー regeregeregerege
提出日時 2016-06-19 00:07:27
言語 F#
(F# 4.0)
結果
AC  
実行時間 555 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 9,253 ms
コンパイル使用メモリ 191,204 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-06-11 06:51:47
合計ジャッジ時間 18,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
77,952 KB
testcase_01 AC 333 ms
34,936 KB
testcase_02 AC 312 ms
35,324 KB
testcase_03 AC 311 ms
35,136 KB
testcase_04 AC 315 ms
35,476 KB
testcase_05 AC 312 ms
35,096 KB
testcase_06 AC 313 ms
35,360 KB
testcase_07 AC 308 ms
35,104 KB
testcase_08 AC 314 ms
34,976 KB
testcase_09 AC 313 ms
35,252 KB
testcase_10 AC 317 ms
35,356 KB
testcase_11 AC 307 ms
35,124 KB
testcase_12 AC 314 ms
34,848 KB
testcase_13 AC 319 ms
35,016 KB
testcase_14 AC 317 ms
35,680 KB
testcase_15 AC 309 ms
35,412 KB
testcase_16 AC 312 ms
35,724 KB
testcase_17 AC 323 ms
35,696 KB
testcase_18 AC 316 ms
35,436 KB
testcase_19 AC 317 ms
35,524 KB
testcase_20 AC 323 ms
35,664 KB
testcase_21 AC 345 ms
46,848 KB
testcase_22 AC 555 ms
77,696 KB
evil01.txt AC 513 ms
77,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (845 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 N = stdin.ReadLine() |> int
let s =
    stdin.ReadLine().Split(' ')
    |> Seq.map int
    |> Set.ofSeq
if s.Count <= 1 then 0
else
    s |> Seq.pairwise
    |> Seq.map (fun (a,b) -> abs(a-b))
    |> Seq.min
|> printfn "%d"
0