結果

問題 No.920 あかあお
ユーザー guriceringuricerin
提出日時 2019-12-08 17:14:40
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 7,528 ms
コンパイル使用メモリ 200,064 KB
実行使用メモリ 36,092 KB
最終ジャッジ日時 2024-06-09 20:14:03
合計ジャッジ時間 13,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
34,740 KB
testcase_01 AC 327 ms
33,940 KB
testcase_02 AC 329 ms
34,620 KB
testcase_03 AC 325 ms
34,108 KB
testcase_04 AC 328 ms
33,936 KB
testcase_05 AC 332 ms
34,104 KB
testcase_06 WA -
testcase_07 AC 330 ms
34,176 KB
testcase_08 AC 326 ms
34,600 KB
testcase_09 AC 326 ms
34,192 KB
testcase_10 AC 328 ms
33,936 KB
testcase_11 AC 328 ms
34,444 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (255 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 - (nax-nin)
    printfn "%d" (nax + rem / 2)
    0 // return an integer exit code
0