結果

問題 No.750 Frac #1
ユーザー convexineqconvexineq
提出日時 2021-03-14 17:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 147 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 53,724 KB
最終ジャッジ日時 2024-11-06 07:02:03
合計ジャッジ時間 2,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,500 KB
testcase_01 AC 38 ms
52,888 KB
testcase_02 AC 38 ms
52,732 KB
testcase_03 AC 38 ms
52,200 KB
testcase_04 AC 38 ms
53,136 KB
testcase_05 AC 38 ms
53,488 KB
testcase_06 AC 39 ms
53,008 KB
testcase_07 AC 39 ms
53,488 KB
testcase_08 AC 38 ms
52,884 KB
testcase_09 AC 38 ms
52,960 KB
testcase_10 AC 40 ms
52,032 KB
testcase_11 AC 37 ms
53,200 KB
testcase_12 AC 38 ms
52,032 KB
testcase_13 AC 38 ms
53,724 KB
testcase_14 AC 38 ms
52,364 KB
testcase_15 AC 38 ms
53,284 KB
testcase_16 AC 38 ms
53,124 KB
testcase_17 AC 39 ms
52,376 KB
testcase_18 AC 38 ms
53,296 KB
testcase_19 AC 39 ms
53,012 KB
testcase_20 AC 38 ms
52,820 KB
testcase_21 AC 38 ms
53,028 KB
testcase_22 AC 39 ms
53,252 KB
testcase_23 AC 39 ms
52,008 KB
testcase_24 AC 38 ms
52,644 KB
testcase_25 AC 38 ms
52,332 KB
testcase_26 AC 38 ms
53,496 KB
testcase_27 AC 38 ms
52,088 KB
testcase_28 AC 38 ms
53,488 KB
testcase_29 AC 38 ms
52,684 KB
testcase_30 AC 37 ms
52,084 KB
testcase_31 AC 37 ms
53,036 KB
testcase_32 AC 38 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ab = [list(map(int,input().split())) for _ in range(n)]
ab.sort(key = lambda x: x[0]/x[1],reverse=1)
for a,b in ab:
    print(a,b)
0