結果

問題 No.750 Frac #1
ユーザー knt3110knt3110
提出日時 2019-02-11 20:34:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 544 ms / 1,000 ms
コード長 358 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,076 KB
最終ジャッジ日時 2024-07-19 06:48:33
合計ジャッジ時間 20,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
43,548 KB
testcase_01 AC 525 ms
43,688 KB
testcase_02 AC 533 ms
44,076 KB
testcase_03 AC 524 ms
43,460 KB
testcase_04 AC 526 ms
43,688 KB
testcase_05 AC 521 ms
43,340 KB
testcase_06 AC 529 ms
43,808 KB
testcase_07 AC 518 ms
43,428 KB
testcase_08 AC 520 ms
44,068 KB
testcase_09 AC 518 ms
43,808 KB
testcase_10 AC 523 ms
43,684 KB
testcase_11 AC 529 ms
43,944 KB
testcase_12 AC 529 ms
43,692 KB
testcase_13 AC 533 ms
43,712 KB
testcase_14 AC 526 ms
43,684 KB
testcase_15 AC 544 ms
43,456 KB
testcase_16 AC 530 ms
43,816 KB
testcase_17 AC 531 ms
43,804 KB
testcase_18 AC 520 ms
43,556 KB
testcase_19 AC 540 ms
43,928 KB
testcase_20 AC 520 ms
43,676 KB
testcase_21 AC 519 ms
43,684 KB
testcase_22 AC 521 ms
43,552 KB
testcase_23 AC 524 ms
43,680 KB
testcase_24 AC 526 ms
43,560 KB
testcase_25 AC 522 ms
43,460 KB
testcase_26 AC 522 ms
43,468 KB
testcase_27 AC 519 ms
43,556 KB
testcase_28 AC 525 ms
43,588 KB
testcase_29 AC 522 ms
43,336 KB
testcase_30 AC 523 ms
43,808 KB
testcase_31 AC 519 ms
43,328 KB
testcase_32 AC 524 ms
43,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

if __name__ == "__main__":
    # 入力部分
    n = int(input())
    AB = [[int(i) for i in input().split()] for j in range(n)]

    # 本体
    F = np.zeros(n)
    for i in range(len(AB)):
        F[i] = AB[i][0] / AB[i][1]
    F_index = np.argsort(F)[::-1]

    # 出力部分
    for j in F_index:
        print(AB[j][0], AB[j][1])
0