結果
| 問題 | No.9001 標準入出力の練習問題(テスト用) |
| ユーザー |
mnzktw
|
| 提出日時 | 2015-10-17 01:40:39 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
AC
|
| 実行時間 | 23 ms / 1,000 ms |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 61 ms |
| コンパイル使用メモリ | 8,100 KB |
| 実行使用メモリ | 16,512 KB |
| 最終ジャッジ日時 | 2026-04-03 08:07:07 |
| 合計ジャッジ時間 | 1,899 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge5_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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