結果

問題 No.135 とりあえず1次元の問題
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-08-21 16:38:09
言語 F#
(F# 4.0)
結果
AC  
実行時間 541 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 10,335 ms
コンパイル使用メモリ 194,172 KB
実行使用メモリ 78,284 KB
最終ジャッジ日時 2024-06-11 06:54:58
合計ジャッジ時間 17,118 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 525 ms
78,244 KB
testcase_01 AC 307 ms
34,976 KB
testcase_02 AC 301 ms
35,108 KB
testcase_03 AC 306 ms
34,208 KB
testcase_04 AC 314 ms
35,140 KB
testcase_05 AC 304 ms
35,020 KB
testcase_06 AC 314 ms
35,008 KB
testcase_07 AC 308 ms
35,240 KB
testcase_08 AC 313 ms
35,136 KB
testcase_09 AC 308 ms
35,140 KB
testcase_10 AC 308 ms
35,136 KB
testcase_11 AC 305 ms
35,396 KB
testcase_12 AC 307 ms
35,536 KB
testcase_13 AC 304 ms
35,144 KB
testcase_14 AC 312 ms
35,560 KB
testcase_15 AC 310 ms
35,528 KB
testcase_16 AC 312 ms
35,848 KB
testcase_17 AC 314 ms
35,692 KB
testcase_18 AC 314 ms
35,440 KB
testcase_19 AC 308 ms
35,752 KB
testcase_20 AC 305 ms
35,548 KB
testcase_21 AC 377 ms
47,596 KB
testcase_22 AC 541 ms
78,284 KB
evil01.txt AC 526 ms
78,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (774 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 computeMin xs =
    let ys = Set.ofSeq xs |> Set.toSeq
    if Seq.length ys < 2 then 0
    else Seq.pairwise ys |> Seq.map (fun (x, y) -> y - x |> abs) |> Seq.min

let () =
    let _ = stdin.ReadLine()
    let xs = stdin.ReadLine().Split(' ') |> Array.map int
    computeMin xs |> printfn "%d"
0