結果

問題 No.904 サメトロ
ユーザー guriceringuricerin
提出日時 2019-12-18 17:02:02
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 793 bytes
コンパイル時間 7,097 ms
コンパイル使用メモリ 187,600 KB
実行使用メモリ 36,904 KB
最終ジャッジ日時 2024-07-06 14:41:08
合計ジャッジ時間 20,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
34,580 KB
testcase_01 WA -
testcase_02 AC 321 ms
34,036 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 323 ms
34,464 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 311 ms
34,260 KB
testcase_19 WA -
testcase_20 AC 326 ms
33,928 KB
testcase_21 WA -
testcase_22 AC 316 ms
34,572 KB
testcase_23 WA -
testcase_24 AC 314 ms
34,060 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 318 ms
34,744 KB
testcase_28 AC 313 ms
34,464 KB
testcase_29 AC 317 ms
34,472 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 316 ms
34,344 KB
testcase_33 AC 316 ms
34,476 KB
testcase_34 AC 312 ms
34,468 KB
testcase_35 AC 319 ms
34,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (238 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 - 1)
    for i in 0 .. N - 2 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