結果

問題 No.185 和風
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-26 01:18:20
言語 F#
(F# 4.0)
結果
AC  
実行時間 352 ms / 1,000 ms
コード長 407 bytes
コンパイル時間 6,466 ms
コンパイル使用メモリ 184,976 KB
実行使用メモリ 35,668 KB
最終ジャッジ日時 2024-04-26 21:50:37
合計ジャッジ時間 9,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,908 KB
testcase_01 AC 335 ms
35,668 KB
testcase_02 AC 338 ms
35,036 KB
testcase_03 AC 339 ms
35,508 KB
testcase_04 AC 342 ms
35,568 KB
testcase_05 AC 341 ms
34,744 KB
testcase_06 AC 352 ms
34,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (222 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 split (s:string) = s.Split ' '

let subtract = split >> Array.map int >> fun (a:int[]) -> a.[1] - a.[0]
let judge (a:int[]) =
    match a with
    | a when Array.length a = 1 && a.[0] > 0 -> a.[0]
    | _ -> -1

let iter (n:int) =
    seq { for _ in 1..n -> stdin.ReadLine () }
    |> Seq.map subtract
    |> Seq.distinct
    |> Seq.toArray
    |> judge

stdin.ReadLine () |> int |> iter |> printfn "%d"
0