結果
問題 | No.306 さいたま2008 |
ユーザー |
|
提出日時 | 2015-12-01 05:30:48 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 210 bytes |
コンパイル時間 | 1,275 ms |
コンパイル使用メモリ | 175,616 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-02-14 12:11:26 |
合計ジャッジ時間 | 2,287 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.10.1/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
-- yukicoder My Practice -- author: Leonardone @ NEETSDKASU import Control.Applicative import Data.List main = print . f . map read . words =<< getContents f (xa:ya:xb:yb:_) = ya + xa * (yb - ya) / (xb + xa)