結果

問題 No.135 とりあえず1次元の問題
ユーザー chike_pluschike_plus
提出日時 2019-04-04 10:29:52
言語 F#
(F# 4.0)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 13,142 ms
コンパイル使用メモリ 185,540 KB
実行使用メモリ 48,640 KB
最終ジャッジ日時 2024-06-07 04:35:37
合計ジャッジ時間 11,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
48,120 KB
testcase_01 AC 67 ms
29,952 KB
testcase_02 AC 68 ms
29,824 KB
testcase_03 AC 70 ms
29,696 KB
testcase_04 AC 67 ms
29,824 KB
testcase_05 AC 67 ms
29,824 KB
testcase_06 AC 67 ms
29,824 KB
testcase_07 AC 68 ms
29,696 KB
testcase_08 AC 73 ms
29,944 KB
testcase_09 AC 70 ms
29,824 KB
testcase_10 AC 69 ms
29,952 KB
testcase_11 AC 68 ms
29,952 KB
testcase_12 AC 68 ms
30,176 KB
testcase_13 AC 68 ms
29,952 KB
testcase_14 AC 69 ms
30,204 KB
testcase_15 AC 70 ms
30,080 KB
testcase_16 AC 71 ms
30,436 KB
testcase_17 AC 71 ms
30,080 KB
testcase_18 AC 70 ms
30,208 KB
testcase_19 AC 69 ms
30,208 KB
testcase_20 AC 68 ms
30,204 KB
testcase_21 AC 103 ms
48,640 KB
testcase_22 AC 120 ms
48,128 KB
evil01.txt AC 117 ms
48,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (338 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 ``No.135 とりあえず1次元の問題``() =

  let n = stdin.ReadLine() |> int
  let xn =
     stdin.ReadLine().Split(' ')
    |> Array.map (int)
    |> Array.sort

  seq {
    for i in [2..xn.Length] do
     if xn.[i-1] <> xn.[i-2] then 
      yield (xn.[i-1] - xn.[i-2]) 
  }
  |> fun sq ->
     if   sq |> Seq.length = 0 then 0
     else sq |> Seq.min 
  |> stdout.WriteLine
  
``No.135 とりあえず1次元の問題``()
0