結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー dodomarocgenexdodomarocgenex
提出日時 2019-10-12 07:50:40
言語 Swift
(6.0.3)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 106 bytes
コンパイル時間 6,196 ms
コンパイル使用メモリ 129,340 KB
実行使用メモリ 29,032 KB
最終ジャッジ日時 2024-11-30 15:03:16
合計ジャッジ時間 2,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,344 KB
testcase_01 AC 9 ms
9,216 KB
testcase_02 AC 9 ms
9,344 KB
testcase_03 AC 9 ms
9,472 KB
testcase_04 AC 9 ms
9,216 KB
testcase_05 AC 9 ms
9,216 KB
testcase_06 AC 10 ms
9,088 KB
testcase_07 AC 20 ms
9,472 KB
testcase_08 AC 62 ms
12,480 KB
testcase_09 AC 55 ms
13,568 KB
testcase_10 AC 100 ms
26,644 KB
testcase_11 AC 102 ms
26,668 KB
testcase_12 AC 104 ms
26,944 KB
testcase_13 AC 106 ms
26,832 KB
testcase_14 AC 108 ms
26,980 KB
testcase_15 AC 110 ms
26,884 KB
testcase_16 AC 120 ms
29,032 KB
testcase_17 AC 9 ms
9,216 KB
testcase_18 AC 8 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let n = Int(readLine()!)!

let a = readLine()!.split(separator:" ").map { Int($0)! }

print(a.reduce(0,+))
0