結果

問題 No.750 Frac #1
ユーザー taktak
提出日時 2019-02-03 15:38:28
言語 F#
(F# 4.0)
結果
AC  
実行時間 334 ms / 1,000 ms
コード長 516 bytes
コンパイル時間 6,412 ms
コンパイル使用メモリ 191,956 KB
実行使用メモリ 35,080 KB
最終ジャッジ日時 2024-12-17 15:06:01
合計ジャッジ時間 18,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
34,260 KB
testcase_01 AC 317 ms
34,016 KB
testcase_02 AC 313 ms
34,704 KB
testcase_03 AC 312 ms
34,696 KB
testcase_04 AC 319 ms
34,636 KB
testcase_05 AC 314 ms
35,076 KB
testcase_06 AC 314 ms
34,952 KB
testcase_07 AC 315 ms
34,560 KB
testcase_08 AC 308 ms
34,624 KB
testcase_09 AC 313 ms
34,936 KB
testcase_10 AC 320 ms
34,576 KB
testcase_11 AC 314 ms
34,276 KB
testcase_12 AC 311 ms
34,828 KB
testcase_13 AC 318 ms
34,952 KB
testcase_14 AC 313 ms
34,512 KB
testcase_15 AC 312 ms
34,764 KB
testcase_16 AC 317 ms
34,836 KB
testcase_17 AC 306 ms
34,944 KB
testcase_18 AC 318 ms
34,812 KB
testcase_19 AC 317 ms
34,708 KB
testcase_20 AC 316 ms
34,632 KB
testcase_21 AC 313 ms
34,776 KB
testcase_22 AC 325 ms
34,268 KB
testcase_23 AC 312 ms
35,080 KB
testcase_24 AC 317 ms
34,940 KB
testcase_25 AC 319 ms
34,712 KB
testcase_26 AC 313 ms
34,572 KB
testcase_27 AC 308 ms
34,696 KB
testcase_28 AC 322 ms
34,636 KB
testcase_29 AC 321 ms
34,684 KB
testcase_30 AC 313 ms
34,948 KB
testcase_31 AC 334 ms
34,568 KB
testcase_32 AC 317 ms
34,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (220 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

type Frac = { Numer: int; Denom: int }

module Frac = 

    let compare (x: Frac) (y: Frac) =
        let x' = x.Numer * y.Denom
        let y' = y.Numer * x.Denom
        compare x' y'


let n = stdin.ReadLine() |> int
let fracs = Array.init n (fun _ ->
    let A, B = 
        let t = stdin.ReadLine().Split()
                |> Array.map int 
        t.[0], t.[1]
    { Numer = A; Denom = B })

fracs
|> Array.sortWith Frac.compare
|> Array.rev
|> Array.iter(fun x -> printfn "%i %i" x.Numer x.Denom)
0