結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kokoa1046kokoa1046
提出日時 2017-09-04 16:33:57
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 519 ms / 3,000 ms
コード長 114 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 89,600 KB
最終ジャッジ日時 2024-06-07 13:26:11
合計ジャッジ時間 4,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
15,872 KB
testcase_01 AC 24 ms
15,872 KB
testcase_02 AC 25 ms
16,000 KB
testcase_03 AC 24 ms
16,000 KB
testcase_04 AC 25 ms
15,872 KB
testcase_05 AC 25 ms
15,872 KB
testcase_06 AC 27 ms
16,128 KB
testcase_07 AC 45 ms
17,280 KB
testcase_08 AC 106 ms
23,680 KB
testcase_09 AC 160 ms
32,256 KB
testcase_10 AC 435 ms
75,264 KB
testcase_11 AC 440 ms
75,264 KB
testcase_12 AC 472 ms
75,392 KB
testcase_13 AC 476 ms
75,392 KB
testcase_14 AC 482 ms
77,056 KB
testcase_15 AC 491 ms
78,080 KB
testcase_16 AC 519 ms
89,600 KB
testcase_17 AC 26 ms
15,872 KB
testcase_18 AC 26 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define a (read))
(define (readn n)  (if (= n 0) '() (cons (read) (readn (- n 1)) ) ))
(print (apply + (readn a)))
0