結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー nohopennohopen
提出日時 2019-06-15 15:53:41
言語 F#
(F# 4.0)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 4,913 ms
コンパイル使用メモリ 157,132 KB
実行使用メモリ 54,012 KB
最終ジャッジ日時 2023-08-12 01:22:07
合計ジャッジ時間 9,060 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
22,824 KB
testcase_01 AC 83 ms
20,868 KB
testcase_02 AC 85 ms
22,936 KB
testcase_03 AC 86 ms
20,892 KB
testcase_04 AC 85 ms
24,992 KB
testcase_05 AC 85 ms
24,932 KB
testcase_06 AC 93 ms
23,276 KB
testcase_07 AC 98 ms
26,556 KB
testcase_08 AC 120 ms
31,448 KB
testcase_09 AC 129 ms
32,348 KB
testcase_10 AC 214 ms
51,424 KB
testcase_11 AC 214 ms
54,012 KB
testcase_12 AC 218 ms
52,252 KB
testcase_13 AC 225 ms
50,920 KB
testcase_14 AC 224 ms
53,376 KB
testcase_15 AC 225 ms
53,984 KB
testcase_16 AC 240 ms
52,392 KB
testcase_17 AC 83 ms
22,876 KB
testcase_18 AC 84 ms
22,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

open System

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

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