結果
問題 | No.904 サメトロ |
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 WA * 22 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /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/
ソースコード
open Systemopen System.Collections.Generic[<AutoOpen>]module Cin =let read f = stdin.ReadLine() |> flet reada f = stdin.ReadLine().Split() |> Array.map flet 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 intlet AB = Array.zeroCreate (N - 1)for i in 0 .. N - 2 doAB.[i] <- reada intlet asum = AB |> Array.sumBy (fun ab -> ab.[0])let bsum = AB |> Array.sumBy (fun ab -> ab.[1])let diff = asum - bsumlet lim = asumlet ans = lim - diff + 1printfn "%d" ans0 // return an integer exit code