結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
44,928 KB
testcase_01 AC 73 ms
29,952 KB
testcase_02 AC 73 ms
30,060 KB
testcase_03 RE -
testcase_04 AC 72 ms
30,080 KB
testcase_05 AC 73 ms
29,824 KB
testcase_06 AC 75 ms
29,824 KB
testcase_07 AC 72 ms
30,076 KB
testcase_08 AC 75 ms
29,952 KB
testcase_09 AC 74 ms
29,824 KB
testcase_10 AC 77 ms
29,952 KB
testcase_11 AC 73 ms
29,952 KB
testcase_12 AC 75 ms
30,080 KB
testcase_13 AC 75 ms
29,952 KB
testcase_14 AC 76 ms
30,208 KB
testcase_15 AC 76 ms
30,080 KB
testcase_16 AC 78 ms
30,316 KB
testcase_17 AC 75 ms
30,208 KB
testcase_18 AC 75 ms
30,208 KB
testcase_19 AC 78 ms
30,080 KB
testcase_20 AC 78 ms
30,208 KB
testcase_21 AC 109 ms
45,564 KB
testcase_22 AC 121 ms
44,928 KB
evil01.txt AC 122 ms
45,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (630 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