結果
| 問題 | No.750 Frac #1 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-01-06 02:07:17 |
| 言語 | Haskell (9.14.1) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 276 bytes |
| 記録 | |
| コンパイル時間 | 2,716 ms |
| コンパイル使用メモリ | 196,736 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-17 18:17:42 |
| 合計ジャッジ時間 | 6,688 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
コンパイルメッセージ
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 Data.Ratio
import Data.List
import Control.Monad
main = do
n <- read <$> getLine
mapM_ (\(x:y:[]) -> putStrLn (show x ++ " " ++ show y)) . sortBy (\x y -> let f (x:y:[]) = x % y in compare (f y) (f x)) . map (map read . words) =<< sequence (replicate n getLine)