結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | regerege |
提出日時 | 2016-06-19 00:06:11 |
言語 | F# (F# 4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 210 bytes |
コンパイル時間 | 7,346 ms |
コンパイル使用メモリ | 184,628 KB |
実行使用メモリ | 79,832 KB |
最終ジャッジ日時 | 2024-06-11 06:51:26 |
合計ジャッジ時間 | 16,743 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 519 ms
77,644 KB |
testcase_01 | AC | 308 ms
35,192 KB |
testcase_02 | AC | 304 ms
34,680 KB |
testcase_03 | RE | - |
testcase_04 | AC | 321 ms
34,540 KB |
testcase_05 | AC | 300 ms
35,396 KB |
testcase_06 | AC | 303 ms
35,008 KB |
testcase_07 | AC | 307 ms
35,140 KB |
testcase_08 | AC | 303 ms
35,012 KB |
testcase_09 | AC | 303 ms
35,396 KB |
testcase_10 | AC | 303 ms
35,144 KB |
testcase_11 | AC | 303 ms
35,228 KB |
testcase_12 | AC | 310 ms
35,008 KB |
testcase_13 | AC | 322 ms
35,148 KB |
testcase_14 | AC | 311 ms
35,664 KB |
testcase_15 | AC | 307 ms
35,280 KB |
testcase_16 | AC | 307 ms
35,708 KB |
testcase_17 | AC | 307 ms
35,948 KB |
testcase_18 | AC | 310 ms
35,396 KB |
testcase_19 | AC | 311 ms
35,512 KB |
testcase_20 | AC | 318 ms
34,844 KB |
testcase_21 | AC | 327 ms
46,976 KB |
testcase_22 | AC | 515 ms
79,832 KB |
evil01.txt | AC | 482 ms
77,792 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (227 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/
ソースコード
let N = stdin.ReadLine() |> int if N = 0 then 0 else stdin.ReadLine().Split(' ') |> Seq.map int |> Set.ofSeq |> Seq.pairwise |> Seq.map (fun (a,b) -> abs(a-b)) |> Seq.min |> printfn "%d"