結果

問題 No.750 Frac #1
ユーザー YU HiroseYU Hirose
提出日時 2024-06-29 16:36:07
言語 Julia
(1.10.2)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 525,896 KB
最終ジャッジ日時 2024-06-29 16:36:27
合計ジャッジ時間 19,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
267,048 KB
testcase_01 AC 473 ms
264,060 KB
testcase_02 WA -
testcase_03 AC 462 ms
265,164 KB
testcase_04 AC 462 ms
266,232 KB
testcase_05 AC 494 ms
266,252 KB
testcase_06 WA -
testcase_07 AC 514 ms
265,988 KB
testcase_08 AC 463 ms
263,824 KB
testcase_09 AC 483 ms
264,560 KB
testcase_10 AC 487 ms
264,604 KB
testcase_11 WA -
testcase_12 AC 482 ms
265,464 KB
testcase_13 AC 475 ms
262,692 KB
testcase_14 AC 459 ms
264,432 KB
testcase_15 AC 504 ms
264,668 KB
testcase_16 AC 460 ms
263,908 KB
testcase_17 AC 465 ms
264,556 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 504 ms
263,916 KB
testcase_21 AC 458 ms
264,840 KB
testcase_22 AC 465 ms
264,040 KB
testcase_23 AC 520 ms
265,592 KB
testcase_24 WA -
testcase_25 AC 504 ms
266,276 KB
testcase_26 WA -
testcase_27 AC 499 ms
264,044 KB
testcase_28 AC 462 ms
262,016 KB
testcase_29 AC 463 ms
263,344 KB
testcase_30 AC 487 ms
266,108 KB
testcase_31 WA -
testcase_32 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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