結果

問題 No.306 さいたま2008
ユーザー niyarin
提出日時 2016-05-31 19:37:23
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2025-02-14 12:13:14
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

(display (let* ((xa (read))
       (ya (read))
       (xb (read))
       (yb (read)))
       (exact->inexact  (/ (+ (* yb xa ) (* ya xb))
          (+ xa xb ) ) ) ))
(newline)
       
0