結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-11-21 21:27:39
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 43,392 KB
最終ジャッジ日時 2024-05-04 18:41:55
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
18,304 KB
testcase_01 AC 26 ms
18,304 KB
testcase_02 AC 25 ms
18,304 KB
testcase_03 AC 25 ms
18,304 KB
testcase_04 AC 25 ms
18,432 KB
testcase_05 AC 26 ms
18,304 KB
testcase_06 AC 27 ms
18,432 KB
testcase_07 AC 39 ms
19,200 KB
testcase_08 AC 80 ms
22,528 KB
testcase_09 AC 108 ms
25,216 KB
testcase_10 AC 294 ms
38,272 KB
testcase_11 AC 292 ms
39,040 KB
testcase_12 AC 287 ms
39,296 KB
testcase_13 AC 316 ms
39,936 KB
testcase_14 AC 319 ms
40,320 KB
testcase_15 AC 335 ms
40,832 KB
testcase_16 AC 368 ms
43,392 KB
testcase_17 AC 26 ms
18,304 KB
testcase_18 AC 26 ms
18,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use gauche.generator)

(define (solve)
    (let* ((n (read)) (xs (gtake read n)))
        (print (apply + (generator->list xs)))))

(solve)
0