結果

問題 No.135 とりあえず1次元の問題
ユーザー chike_pluschike_plus
提出日時 2019-04-04 10:27:09
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 368 bytes
コンパイル時間 9,062 ms
コンパイル使用メモリ 186,324 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-06-07 04:19:02
合計ジャッジ時間 12,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
44,928 KB
testcase_01 AC 60 ms
29,824 KB
testcase_02 AC 59 ms
30,080 KB
testcase_03 RE -
testcase_04 AC 61 ms
29,824 KB
testcase_05 AC 59 ms
29,952 KB
testcase_06 AC 57 ms
29,952 KB
testcase_07 AC 61 ms
30,052 KB
testcase_08 AC 61 ms
29,696 KB
testcase_09 AC 63 ms
30,080 KB
testcase_10 AC 62 ms
29,952 KB
testcase_11 AC 61 ms
29,824 KB
testcase_12 AC 62 ms
29,952 KB
testcase_13 AC 61 ms
29,824 KB
testcase_14 AC 61 ms
30,080 KB
testcase_15 AC 61 ms
30,080 KB
testcase_16 AC 62 ms
30,200 KB
testcase_17 AC 62 ms
30,080 KB
testcase_18 AC 60 ms
30,080 KB
testcase_19 AC 63 ms
30,208 KB
testcase_20 AC 64 ms
30,200 KB
testcase_21 AC 91 ms
45,440 KB
testcase_22 AC 99 ms
44,928 KB
evil01.txt AC 98 ms
44,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (264 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]) 
  }
  |> Seq.min 
  |> stdout.WriteLine
  
``No.135 とりあえず1次元の問題``()
0