結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー yusakayusaka
提出日時 2015-09-22 04:20:05
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 18 ms / 1,000 ms
コード長 191 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 5,400 KB
実行使用メモリ 11,708 KB
最終ジャッジ日時 2023-09-26 14:21:20
合計ジャッジ時間 704 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,676 KB
testcase_01 AC 18 ms
11,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env gosh

(let ((a (read (current-input-port))) (b (read (current-input-port))) (s (read (current-input-port))))
    (write (+ a b))
    (display " ")
    (write s)
    (newline)
)
0