結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
18,560 KB
testcase_01 AC 29 ms
18,304 KB
testcase_02 AC 29 ms
18,432 KB
testcase_03 AC 29 ms
18,304 KB
testcase_04 AC 29 ms
18,176 KB
testcase_05 AC 30 ms
18,304 KB
testcase_06 AC 31 ms
18,304 KB
testcase_07 AC 49 ms
19,200 KB
testcase_08 AC 95 ms
22,400 KB
testcase_09 AC 130 ms
22,400 KB
testcase_10 AC 343 ms
22,528 KB
testcase_11 AC 361 ms
22,272 KB
testcase_12 AC 363 ms
22,400 KB
testcase_13 AC 367 ms
22,272 KB
testcase_14 AC 388 ms
22,272 KB
testcase_15 AC 388 ms
22,272 KB
testcase_16 AC 429 ms
22,400 KB
testcase_17 AC 29 ms
18,304 KB
testcase_18 AC 29 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use gauche.generator)

(define (solve)
    (let* ((n (read)) (xs (gtake read n)))
        (print (generator-fold + 0 xs))))

(solve)
0