結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2021-03-28 20:17:44
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 82 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 105,056 KB
最終ジャッジ日時 2024-05-06 22:53:16
合計ジャッジ時間 4,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
15,744 KB
testcase_01 AC 22 ms
16,128 KB
testcase_02 AC 22 ms
15,744 KB
testcase_03 AC 20 ms
15,872 KB
testcase_04 AC 22 ms
15,744 KB
testcase_05 AC 20 ms
15,872 KB
testcase_06 AC 23 ms
16,128 KB
testcase_07 AC 43 ms
17,792 KB
testcase_08 AC 102 ms
25,752 KB
testcase_09 AC 153 ms
33,388 KB
testcase_10 AC 442 ms
81,688 KB
testcase_11 AC 450 ms
84,196 KB
testcase_12 AC 464 ms
87,252 KB
testcase_13 AC 461 ms
89,164 KB
testcase_14 AC 475 ms
90,260 KB
testcase_15 AC 473 ms
92,708 KB
testcase_16 AC 493 ms
105,056 KB
testcase_17 AC 22 ms
15,744 KB
testcase_18 AC 22 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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