結果

問題 No.750 Frac #1
ユーザー ebicochineal
提出日時 2018-11-25 20:52:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-25 15:30:38
合計ジャッジ時間 2,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [map(int, input().split()) for x in range(n)]
for i in sorted((x/y, (x, y)) for x, y in a)[::-1] : print(*i)
0