結果
問題 |
No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
|
ユーザー |
![]() |
提出日時 | 2017-09-04 16:33:32 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
AC
|
実行時間 | 511 ms / 2,000 ms |
コード長 | 114 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 89,472 KB |
最終ジャッジ日時 | 2024-11-06 20:53:56 |
合計ジャッジ時間 | 4,645 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 15 |
ソースコード
(define a (read)) (define (readn n) (if (= n 0) '() (cons (read) (readn (- n 1)) ) )) (print (apply + (readn a)))