結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー nohopennohopen
提出日時 2019-06-15 15:53:41
言語 F#
(F# 4.0)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 13,991 ms
コンパイル使用メモリ 183,484 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-04-29 16:11:08
合計ジャッジ時間 20,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
35,600 KB
testcase_01 AC 335 ms
35,724 KB
testcase_02 AC 339 ms
35,788 KB
testcase_03 AC 340 ms
35,856 KB
testcase_04 AC 337 ms
35,760 KB
testcase_05 AC 344 ms
35,888 KB
testcase_06 AC 355 ms
35,948 KB
testcase_07 AC 371 ms
38,448 KB
testcase_08 AC 363 ms
46,848 KB
testcase_09 AC 370 ms
46,336 KB
testcase_10 AC 392 ms
62,080 KB
testcase_11 AC 395 ms
62,332 KB
testcase_12 AC 392 ms
63,084 KB
testcase_13 AC 395 ms
63,744 KB
testcase_14 AC 397 ms
64,896 KB
testcase_15 AC 401 ms
64,768 KB
testcase_16 AC 406 ms
67,200 KB
testcase_17 AC 341 ms
35,660 KB
testcase_18 AC 345 ms
35,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (357 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

let N = Console.ReadLine()
let a = Console.ReadLine().Split(' ')

a |> Array.map Convert.ToInt64 |> Array.sum |> printfn "%d"
0