結果

問題 No.780 オフ会
ユーザー taktak
提出日時 2019-02-02 06:28:14
言語 F#
(F# 4.0)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 10,409 ms
コンパイル使用メモリ 189,244 KB
実行使用メモリ 34,900 KB
最終ジャッジ日時 2024-11-25 03:04:53
合計ジャッジ時間 18,708 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
34,404 KB
testcase_01 AC 302 ms
34,644 KB
testcase_02 AC 310 ms
34,648 KB
testcase_03 AC 301 ms
34,512 KB
testcase_04 AC 306 ms
34,660 KB
testcase_05 AC 302 ms
33,972 KB
testcase_06 AC 302 ms
34,776 KB
testcase_07 AC 309 ms
34,112 KB
testcase_08 AC 321 ms
34,504 KB
testcase_09 AC 310 ms
34,644 KB
testcase_10 AC 305 ms
34,776 KB
testcase_11 AC 306 ms
34,376 KB
testcase_12 AC 308 ms
34,652 KB
testcase_13 AC 299 ms
34,392 KB
testcase_14 AC 309 ms
34,760 KB
testcase_15 AC 327 ms
34,228 KB
testcase_16 AC 315 ms
34,644 KB
testcase_17 AC 308 ms
34,900 KB
testcase_18 AC 305 ms
34,124 KB
testcase_19 AC 297 ms
34,528 KB
testcase_20 AC 304 ms
34,376 KB
testcase_21 AC 304 ms
34,252 KB
testcase_22 AC 301 ms
34,508 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (270 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