結果

問題 No.135 とりあえず1次元の問題
ユーザー regeregeregerege
提出日時 2016-06-19 00:05:07
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 165 bytes
コンパイル時間 15,603 ms
コンパイル使用メモリ 185,264 KB
実行使用メモリ 78,068 KB
最終ジャッジ日時 2024-06-11 06:50:26
合計ジャッジ時間 20,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 621 ms
77,752 KB
testcase_01 AC 357 ms
35,096 KB
testcase_02 AC 351 ms
34,932 KB
testcase_03 RE -
testcase_04 AC 354 ms
35,136 KB
testcase_05 AC 350 ms
35,488 KB
testcase_06 AC 349 ms
35,104 KB
testcase_07 AC 350 ms
35,228 KB
testcase_08 AC 352 ms
35,252 KB
testcase_09 AC 350 ms
35,244 KB
testcase_10 AC 348 ms
35,228 KB
testcase_11 AC 344 ms
35,220 KB
testcase_12 AC 351 ms
35,528 KB
testcase_13 AC 354 ms
35,204 KB
testcase_14 AC 350 ms
35,560 KB
testcase_15 AC 351 ms
35,540 KB
testcase_16 AC 354 ms
35,172 KB
testcase_17 AC 352 ms
35,684 KB
testcase_18 AC 350 ms
35,184 KB
testcase_19 AC 353 ms
35,644 KB
testcase_20 AC 351 ms
35,532 KB
testcase_21 AC 372 ms
46,836 KB
testcase_22 AC 616 ms
78,068 KB
evil01.txt AC 572 ms
77,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (705 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
stdin.ReadLine().Split(' ')
|> Seq.map int
|> Set.ofSeq
|> Seq.pairwise
|> Seq.map (fun (a,b) -> abs(a-b))
|> Seq.min
|> printfn "%d"
0