結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-11-19 18:55:29
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 431 ms / 3,000 ms
コード長 129 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 45,056 KB
最終ジャッジ日時 2024-06-07 13:37:12
合計ジャッジ時間 4,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
21,888 KB
testcase_01 AC 64 ms
21,760 KB
testcase_02 AC 66 ms
21,888 KB
testcase_03 AC 66 ms
21,888 KB
testcase_04 AC 66 ms
21,760 KB
testcase_05 AC 65 ms
22,016 KB
testcase_06 AC 71 ms
22,144 KB
testcase_07 AC 83 ms
22,656 KB
testcase_08 AC 132 ms
25,472 KB
testcase_09 AC 168 ms
25,728 KB
testcase_10 AC 374 ms
40,960 KB
testcase_11 AC 364 ms
40,832 KB
testcase_12 AC 372 ms
40,832 KB
testcase_13 AC 387 ms
40,960 KB
testcase_14 AC 388 ms
43,008 KB
testcase_15 AC 389 ms
43,520 KB
testcase_16 AC 431 ms
45,056 KB
testcase_17 AC 62 ms
21,888 KB
testcase_18 AC 64 ms
21,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-42)

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

(solve)
0