結果

問題 No.716 距離
ユーザー taktak
提出日時 2018-07-27 22:34:06
言語 F#
(F# 4.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 13,800 ms
コンパイル使用メモリ 185,260 KB
実行使用メモリ 35,404 KB
最終ジャッジ日時 2024-07-05 02:26:48
合計ジャッジ時間 28,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
35,140 KB
testcase_01 AC 332 ms
34,332 KB
testcase_02 AC 326 ms
35,404 KB
testcase_03 AC 331 ms
34,204 KB
testcase_04 AC 332 ms
34,736 KB
testcase_05 AC 330 ms
35,272 KB
testcase_06 AC 336 ms
34,896 KB
testcase_07 AC 329 ms
34,620 KB
testcase_08 AC 327 ms
34,600 KB
testcase_09 AC 332 ms
34,420 KB
testcase_10 AC 326 ms
35,132 KB
testcase_11 AC 332 ms
34,692 KB
testcase_12 AC 334 ms
34,584 KB
testcase_13 AC 322 ms
34,744 KB
testcase_14 AC 333 ms
34,876 KB
testcase_15 AC 336 ms
34,860 KB
testcase_16 AC 335 ms
34,840 KB
testcase_17 AC 332 ms
35,024 KB
testcase_18 AC 334 ms
35,012 KB
testcase_19 AC 331 ms
34,148 KB
testcase_20 AC 331 ms
34,316 KB
testcase_21 AC 332 ms
35,044 KB
testcase_22 AC 333 ms
35,072 KB
testcase_23 AC 333 ms
34,248 KB
testcase_24 AC 336 ms
35,132 KB
testcase_25 AC 332 ms
35,176 KB
testcase_26 AC 335 ms
35,092 KB
testcase_27 AC 331 ms
34,436 KB
testcase_28 AC 328 ms
34,464 KB
testcase_29 AC 335 ms
34,852 KB
testcase_30 AC 332 ms
34,964 KB
testcase_31 AC 333 ms
34,852 KB
testcase_32 AC 334 ms
34,432 KB
testcase_33 AC 334 ms
34,428 KB
testcase_34 AC 326 ms
34,708 KB
testcase_35 AC 334 ms
34,500 KB
testcase_36 AC 334 ms
34,672 KB
testcase_37 AC 332 ms
34,228 KB
testcase_38 AC 334 ms
34,808 KB
testcase_39 AC 328 ms
34,172 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (403 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 R () = stdin.ReadLine()
let N = R()
let a = R().Split() |> Array.map int

let Min = 
    let pair = a |> Array.pairwise
    pair |> Array.map(fun (l,r) -> r - l) |> Array.min
let Max =
    (a |> Array.max) - (a |> Array.min)

Min |> printfn "%i"
Max |> printfn "%i"
0