結果

問題 No.780 オフ会
ユーザー taktak
提出日時 2019-02-02 06:28:14
言語 F#
(F# 4.0)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 19,413 ms
コンパイル使用メモリ 189,552 KB
実行使用メモリ 34,908 KB
最終ジャッジ日時 2024-05-03 22:14:00
合計ジャッジ時間 24,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
33,968 KB
testcase_01 AC 339 ms
34,784 KB
testcase_02 AC 337 ms
34,908 KB
testcase_03 AC 338 ms
34,136 KB
testcase_04 AC 337 ms
34,648 KB
testcase_05 AC 332 ms
34,508 KB
testcase_06 AC 332 ms
34,904 KB
testcase_07 AC 337 ms
34,096 KB
testcase_08 AC 333 ms
34,488 KB
testcase_09 AC 331 ms
34,776 KB
testcase_10 AC 334 ms
34,908 KB
testcase_11 AC 335 ms
34,636 KB
testcase_12 AC 339 ms
34,908 KB
testcase_13 AC 337 ms
34,904 KB
testcase_14 AC 335 ms
34,656 KB
testcase_15 AC 337 ms
33,968 KB
testcase_16 AC 337 ms
34,772 KB
testcase_17 AC 335 ms
34,780 KB
testcase_18 AC 334 ms
34,136 KB
testcase_19 AC 331 ms
34,644 KB
testcase_20 AC 331 ms
34,656 KB
testcase_21 AC 333 ms
34,784 KB
testcase_22 AC 331 ms
34,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (391 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 #

open System

type Boy = int
type Girl = int
type Student = { Boy: Boy; Girl: Girl }

let (|Pair|Alone|) x = 
    if x.Boy <= x.Girl then Pair
    else Alone

let solve x = 
    let yasuo = x |> function | Pair -> "YES" | Alone -> "NO"
    let left = abs <| x.Boy - x.Girl
    (yasuo, left)

let A, B = let t = stdin.ReadLine().Split() |> Array.map int in t.[0], t.[1]

solve { Boy = A + 1; Girl = B }
|> fun res -> printfn "%s\n%i" (fst res) (snd res)
0