結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2021-03-28 20:36:31
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 338 ms / 3,000 ms
コード長 71 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 41,088 KB
最終ジャッジ日時 2024-05-06 22:53:29
合計ジャッジ時間 4,650 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
15,872 KB
testcase_01 AC 27 ms
16,000 KB
testcase_02 AC 26 ms
15,872 KB
testcase_03 AC 25 ms
15,872 KB
testcase_04 AC 31 ms
15,744 KB
testcase_05 AC 26 ms
16,000 KB
testcase_06 AC 26 ms
16,128 KB
testcase_07 AC 47 ms
17,152 KB
testcase_08 AC 91 ms
20,864 KB
testcase_09 AC 130 ms
23,552 KB
testcase_10 AC 285 ms
35,968 KB
testcase_11 AC 286 ms
37,504 KB
testcase_12 AC 290 ms
37,016 KB
testcase_13 AC 298 ms
37,760 KB
testcase_14 AC 293 ms
38,256 KB
testcase_15 AC 297 ms
38,488 KB
testcase_16 AC 338 ms
41,088 KB
testcase_17 AC 26 ms
15,872 KB
testcase_18 AC 26 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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