結果

問題 No.904 サメトロ
ユーザー guriceringuricerin
提出日時 2019-12-18 16:59:11
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 787 bytes
コンパイル時間 7,330 ms
コンパイル使用メモリ 187,120 KB
実行使用メモリ 37,652 KB
最終ジャッジ日時 2024-07-06 14:37:55
合計ジャッジ時間 20,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (256 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
open System.Collections.Generic

[<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 N = read int
    let AB = Array.zeroCreate N
    for i in 1 .. N - 1 do
        AB.[i] <- reada int

    let asum = AB |> Array.sumBy (fun ab -> ab.[0])
    let bsum = AB |> Array.sumBy (fun ab -> ab.[1])
    let diff = asum - bsum
    let lim = asum
    let ans = lim - diff + 1
    printfn "%d" ans
    0 // return an integer exit code
0