結果

問題 No.750 Frac #1
ユーザー mlihua09mlihua09
提出日時 2020-08-28 19:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 190 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-11-13 23:40:53
合計ジャッジ時間 2,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,756 KB
testcase_01 AC 37 ms
52,064 KB
testcase_02 AC 36 ms
53,688 KB
testcase_03 AC 37 ms
52,924 KB
testcase_04 AC 36 ms
52,092 KB
testcase_05 AC 37 ms
51,936 KB
testcase_06 AC 37 ms
53,252 KB
testcase_07 AC 36 ms
52,200 KB
testcase_08 AC 37 ms
52,872 KB
testcase_09 AC 37 ms
53,536 KB
testcase_10 AC 37 ms
52,488 KB
testcase_11 AC 36 ms
52,596 KB
testcase_12 AC 37 ms
53,096 KB
testcase_13 AC 36 ms
52,952 KB
testcase_14 AC 37 ms
52,344 KB
testcase_15 AC 36 ms
51,872 KB
testcase_16 AC 36 ms
52,820 KB
testcase_17 AC 37 ms
52,092 KB
testcase_18 AC 38 ms
52,276 KB
testcase_19 AC 38 ms
53,032 KB
testcase_20 AC 36 ms
53,168 KB
testcase_21 AC 37 ms
52,284 KB
testcase_22 AC 37 ms
52,556 KB
testcase_23 AC 37 ms
51,992 KB
testcase_24 AC 36 ms
52,344 KB
testcase_25 AC 37 ms
52,508 KB
testcase_26 AC 37 ms
52,396 KB
testcase_27 AC 37 ms
52,108 KB
testcase_28 AC 36 ms
53,072 KB
testcase_29 AC 36 ms
52,212 KB
testcase_30 AC 37 ms
52,888 KB
testcase_31 AC 36 ms
52,120 KB
testcase_32 AC 36 ms
53,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n = int(input())

AB = []

for i in range(n):
    
    a, b = map(int, input().split())
    
    AB += [[a / b, a, b]]
    
AB.sort()

AB.reverse()

for _, a, b in AB:
    
    print(a, b)
0