結果

問題 No.920 あかあお
ユーザー guriceringuricerin
提出日時 2019-12-08 17:08:27
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 13,910 ms
コンパイル使用メモリ 200,000 KB
実行使用メモリ 34,876 KB
最終ジャッジ日時 2024-06-09 20:07:17
合計ジャッジ時間 19,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
34,176 KB
testcase_01 AC 309 ms
34,740 KB
testcase_02 AC 303 ms
33,932 KB
testcase_03 AC 310 ms
34,176 KB
testcase_04 AC 304 ms
34,184 KB
testcase_05 AC 308 ms
34,616 KB
testcase_06 WA -
testcase_07 AC 304 ms
34,484 KB
testcase_08 AC 306 ms
34,472 KB
testcase_09 AC 312 ms
33,680 KB
testcase_10 AC 324 ms
34,744 KB
testcase_11 AC 304 ms
33,812 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (316 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(22,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

[<AutoOpen>]
module Cin =
    let read f = stdin.ReadLine() |> f
    let reada f = stdin.ReadLine().Split() |> Array.map f

    let readInts() =
        read string
        |> Seq.toArray
        |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

module Util =
    let strRev s =
        s
        |> Seq.rev
        |> Seq.map string
        |> String.concat ""

[<EntryPoint>]
let main _ =
    let [|X;Y;Z|] = reada int
    let nin = min X Y
    let nax = max X Y
    let rem = Z - max 0 (nax-nin)
    printfn "%d" (nax + rem / 2)
    0 // return an integer exit code
0