結果
| 問題 |
No.9001 標準入出力の練習問題(テスト用)
|
| ユーザー |
mnzktw
|
| 提出日時 | 2015-10-17 01:40:39 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 1,000 ms |
| コード長 | 151 bytes |
| コンパイル時間 | 183 ms |
| コンパイル使用メモリ | 6,812 KB |
| 実行使用メモリ | 16,128 KB |
| 最終ジャッジ日時 | 2024-07-22 07:42:58 |
| 合計ジャッジ時間 | 666 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 |
ソースコード
(define (f a b)
(let* ((xs (string-split a #/\s+/))
(xs (map string->number xs)))
#"~(apply + xs) ~b"))
(display (f (read-line) (read-line)))
mnzktw