結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
35,600 KB
testcase_01 AC 317 ms
35,792 KB
testcase_02 AC 316 ms
35,408 KB
testcase_03 AC 316 ms
35,444 KB
testcase_04 AC 314 ms
35,648 KB
testcase_05 AC 327 ms
35,648 KB
testcase_06 AC 318 ms
36,008 KB
testcase_07 AC 332 ms
38,964 KB
testcase_08 AC 349 ms
46,828 KB
testcase_09 AC 345 ms
46,336 KB
testcase_10 AC 374 ms
62,080 KB
testcase_11 AC 380 ms
63,100 KB
testcase_12 AC 380 ms
63,232 KB
testcase_13 AC 397 ms
64,000 KB
testcase_14 AC 369 ms
64,256 KB
testcase_15 AC 372 ms
64,628 KB
testcase_16 AC 389 ms
67,200 KB
testcase_17 AC 317 ms
35,720 KB
testcase_18 AC 314 ms
35,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (354 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