結果

問題 No.750 Frac #1
ユーザー YU HiroseYU Hirose
提出日時 2024-06-29 16:45:56
言語 Julia
(1.10.2)
結果
AC  
実行時間 505 ms / 1,000 ms
コード長 253 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 264,012 KB
最終ジャッジ日時 2024-06-29 16:46:16
合計ジャッジ時間 17,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
261,420 KB
testcase_01 AC 446 ms
261,540 KB
testcase_02 AC 468 ms
261,224 KB
testcase_03 AC 446 ms
262,216 KB
testcase_04 AC 501 ms
262,616 KB
testcase_05 AC 474 ms
261,784 KB
testcase_06 AC 452 ms
261,112 KB
testcase_07 AC 471 ms
261,936 KB
testcase_08 AC 457 ms
259,120 KB
testcase_09 AC 446 ms
262,164 KB
testcase_10 AC 474 ms
261,032 KB
testcase_11 AC 475 ms
261,852 KB
testcase_12 AC 484 ms
263,668 KB
testcase_13 AC 451 ms
261,244 KB
testcase_14 AC 448 ms
261,360 KB
testcase_15 AC 479 ms
262,152 KB
testcase_16 AC 447 ms
261,788 KB
testcase_17 AC 447 ms
260,780 KB
testcase_18 AC 471 ms
261,292 KB
testcase_19 AC 472 ms
261,356 KB
testcase_20 AC 476 ms
263,984 KB
testcase_21 AC 468 ms
261,664 KB
testcase_22 AC 473 ms
263,452 KB
testcase_23 AC 479 ms
261,204 KB
testcase_24 AC 451 ms
264,012 KB
testcase_25 AC 479 ms
261,644 KB
testcase_26 AC 443 ms
261,580 KB
testcase_27 AC 458 ms
261,856 KB
testcase_28 AC 499 ms
262,000 KB
testcase_29 AC 465 ms
261,964 KB
testcase_30 AC 505 ms
261,428 KB
testcase_31 AC 457 ms
263,444 KB
testcase_32 AC 452 ms
263,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function solve()
    n = parse(Int, readline())
    d = []
    for _ in 1:n
        a, b = parse.(Int, split(readline()))
        push!(d, (a/b, a, b))
    end
    sort!(d, rev=true)
    for (_, a, b) in d
        println(a, " ", b)
    end
end
solve()
0