結果
問題 | No.369 足し間違い |
ユーザー | pocarist |
提出日時 | 2016-05-13 22:51:32 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 339 ms / 2,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 13,494 ms |
コンパイル使用メモリ | 191,308 KB |
実行使用メモリ | 35,564 KB |
最終ジャッジ日時 | 2024-10-05 17:12:37 |
合計ジャッジ時間 | 12,147 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (529 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/
ソースコード
// http://yukicoder.me/problems/1039 open System let dprintfn fmt = Printf.kprintf Diagnostics.Debug.WriteLine fmt [<EntryPoint>] let main argv = let N = Console.ReadLine().Trim() |> int let A = Console.ReadLine().Trim().Split([|' '|]) |> Array.map int64 let v = Console.ReadLine().Trim() |> int64 let a = Array.sum A printfn "%d" <| (a - v) 0 // 整数の終了コードを返します