結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2021-03-28 20:17:44
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 82 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 5,300 KB
実行使用メモリ 103,744 KB
最終ジャッジ日時 2023-08-19 15:49:22
合計ジャッジ時間 5,037 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
11,664 KB
testcase_01 AC 15 ms
11,676 KB
testcase_02 AC 17 ms
11,936 KB
testcase_03 AC 16 ms
13,660 KB
testcase_04 AC 18 ms
11,692 KB
testcase_05 AC 15 ms
11,776 KB
testcase_06 AC 16 ms
11,852 KB
testcase_07 AC 35 ms
14,068 KB
testcase_08 AC 83 ms
22,284 KB
testcase_09 AC 131 ms
30,324 KB
testcase_10 AC 396 ms
81,268 KB
testcase_11 AC 400 ms
83,236 KB
testcase_12 AC 406 ms
85,596 KB
testcase_13 AC 422 ms
87,772 KB
testcase_14 AC 390 ms
89,928 KB
testcase_15 AC 395 ms
90,640 KB
testcase_16 AC 494 ms
103,744 KB
testcase_17 AC 17 ms
11,704 KB
testcase_18 AC 15 ms
11,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(read-line)
(print (apply + (map string->number (string-split (read-line) " "))))
0