結果

問題 No.750 Frac #1
ユーザー taktak
提出日時 2019-02-03 15:38:28
言語 F#
(F# 4.0)
結果
AC  
実行時間 355 ms / 1,000 ms
コード長 516 bytes
コンパイル時間 9,061 ms
コンパイル使用メモリ 200,780 KB
実行使用メモリ 35,076 KB
最終ジャッジ日時 2024-05-09 21:15:16
合計ジャッジ時間 22,310 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
34,820 KB
testcase_01 AC 347 ms
33,936 KB
testcase_02 AC 349 ms
34,716 KB
testcase_03 AC 350 ms
35,076 KB
testcase_04 AC 344 ms
34,764 KB
testcase_05 AC 342 ms
34,960 KB
testcase_06 AC 344 ms
34,048 KB
testcase_07 AC 345 ms
34,616 KB
testcase_08 AC 348 ms
34,636 KB
testcase_09 AC 347 ms
33,928 KB
testcase_10 AC 345 ms
33,928 KB
testcase_11 AC 349 ms
34,172 KB
testcase_12 AC 348 ms
35,044 KB
testcase_13 AC 350 ms
34,464 KB
testcase_14 AC 352 ms
34,764 KB
testcase_15 AC 347 ms
34,500 KB
testcase_16 AC 350 ms
34,052 KB
testcase_17 AC 346 ms
33,928 KB
testcase_18 AC 355 ms
33,936 KB
testcase_19 AC 352 ms
34,192 KB
testcase_20 AC 346 ms
34,508 KB
testcase_21 AC 349 ms
34,512 KB
testcase_22 AC 351 ms
34,700 KB
testcase_23 AC 352 ms
34,824 KB
testcase_24 AC 346 ms
34,716 KB
testcase_25 AC 344 ms
34,064 KB
testcase_26 AC 349 ms
34,712 KB
testcase_27 AC 346 ms
34,816 KB
testcase_28 AC 346 ms
34,344 KB
testcase_29 AC 349 ms
33,928 KB
testcase_30 AC 346 ms
34,704 KB
testcase_31 AC 344 ms
34,320 KB
testcase_32 AC 344 ms
34,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (253 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