結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー dodomarocgenexdodomarocgenex
提出日時 2019-10-12 07:40:49
言語 Swift
(5.10.0)
結果
AC  
実行時間 8 ms / 1,000 ms
コード長 105 bytes
コンパイル時間 5,785 ms
コンパイル使用メモリ 125,848 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-05-07 19:37:43
合計ジャッジ時間 1,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,216 KB
testcase_01 AC 8 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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