結果

問題 No.920 あかあお
ユーザー guriceringuricerin
提出日時 2019-12-08 17:33:19
言語 F#
(F# 4.0)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 9,887 ms
コンパイル使用メモリ 199,280 KB
実行使用メモリ 34,880 KB
最終ジャッジ日時 2024-06-09 20:48:44
合計ジャッジ時間 13,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
34,616 KB
testcase_01 AC 304 ms
33,980 KB
testcase_02 AC 307 ms
34,232 KB
testcase_03 AC 308 ms
33,892 KB
testcase_04 AC 317 ms
34,628 KB
testcase_05 AC 311 ms
34,064 KB
testcase_06 AC 309 ms
34,880 KB
testcase_07 AC 300 ms
34,056 KB
testcase_08 AC 305 ms
34,596 KB
testcase_09 AC 306 ms
34,492 KB
testcase_10 AC 304 ms
33,980 KB
testcase_11 AC 311 ms
34,744 KB
testcase_12 AC 301 ms
34,324 KB
testcase_13 AC 307 ms
33,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (256 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
    List.min [X+Z; Y+Z; (X+Y+Z)/2]
    |> printfn "%d"
    0 // return an integer exit code
0