結果

問題 No.750 Frac #1
ユーザー ebicochineal
提出日時 2018-11-25 20:55:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 1,000 ms
コード長 132 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-25 15:37:38
合計ジャッジ時間 2,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 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[1])
0