結果
| 問題 | No.105 arcの六角ボルト |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-09-06 22:09:27 |
| 言語 | Haskell (9.14.1) |
| 結果 |
AC
|
| 実行時間 | 310 ms / 5,000 ms |
| コード長 | 548 bytes |
| 記録 | |
| コンパイル時間 | 10,603 ms |
| コンパイル使用メモリ | 190,080 KB |
| 実行使用メモリ | 76,672 KB |
| 最終ジャッジ日時 | 2026-05-18 05:01:40 |
| 合計ジャッジ時間 | 11,353 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.14.1/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
import Control.Applicative
import Control.Monad
main :: IO ()
main = do
n <- readLn
solve <$> replicateM n (getLine >> replicateM 6 f) >>= mapM_ print
where
f = map read <$> words <$> getLine
solve :: [[[Double]]] -> [Double]
solve = map f
where
f = minimum . filter (>= 0.0) . map ang . filter (\[x, y] -> x < xmx && x > xmn && y > 0)
xmn = cos (pi * 171 / 180.0)
xmx = cos (pi * 119 / 180.0)
ang :: [Double] -> Double
ang [x, _]
| abs a < 0.0000001 = 0.0
| otherwise = a
where
a = 180.0 * acos x / pi - 120.0