結果
問題 | No.750 Frac #1 |
ユーザー |
|
提出日時 | 2024-06-29 16:35:53 |
言語 | Julia (2.11.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 262 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 13,752 KB |
最終ジャッジ日時 | 2024-06-29 16:36:00 |
合計ジャッジ時間 | 4,603 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | TLE * 1 -- * 2 |
other | -- * 30 |
ソースコード
function solve()n = parse(Int, readline())d = []for _ in 1:na, b = parse.(Int, split(readline()))push!(d, a//b)endsort!(d, rev=true)for x in dprintln(numerator(x), " ", denominator(x))endendsolve()