結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
22,016 KB
testcase_01 AC 56 ms
21,760 KB
testcase_02 AC 57 ms
21,760 KB
testcase_03 AC 59 ms
21,760 KB
testcase_04 AC 56 ms
21,760 KB
testcase_05 AC 56 ms
21,888 KB
testcase_06 AC 57 ms
22,016 KB
testcase_07 AC 75 ms
22,656 KB
testcase_08 AC 117 ms
25,472 KB
testcase_09 AC 133 ms
25,600 KB
testcase_10 AC 314 ms
40,832 KB
testcase_11 AC 324 ms
40,804 KB
testcase_12 AC 324 ms
40,848 KB
testcase_13 AC 323 ms
40,824 KB
testcase_14 AC 337 ms
42,920 KB
testcase_15 AC 341 ms
43,392 KB
testcase_16 AC 389 ms
40,960 KB
testcase_17 AC 60 ms
21,760 KB
testcase_18 AC 56 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-42)

;; yukicoder No.9008(空白区切り)でもNo.9009(改行区切り)でも同じコードで通る
;; 内包表記による解法
;; 単に和を求めるだけなら,sum-ecを使ってもよいが
;; ここではリストに入力値を格納する練習のためにlist-ecによった
;; 当初は (define (main args) ...)としていたがRuntime Error

(define (solve)
    (let* ((n (read)) (xs (list-ec (:range v n) (read))))
        (print (apply + xs))))

(solve)
0