結果

問題 No.750 Frac #1
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 20:54:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 1,000 ms
コード長 1,163 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 80,136 KB
実行使用メモリ 55,100 KB
最終ジャッジ日時 2024-10-12 19:26:52
合計ジャッジ時間 8,425 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,596 KB
testcase_01 AC 153 ms
54,768 KB
testcase_02 AC 153 ms
54,872 KB
testcase_03 AC 153 ms
54,888 KB
testcase_04 AC 150 ms
54,688 KB
testcase_05 AC 150 ms
54,656 KB
testcase_06 AC 151 ms
54,636 KB
testcase_07 AC 156 ms
55,036 KB
testcase_08 AC 153 ms
54,796 KB
testcase_09 AC 142 ms
54,244 KB
testcase_10 AC 151 ms
54,964 KB
testcase_11 AC 149 ms
54,984 KB
testcase_12 AC 137 ms
54,672 KB
testcase_13 AC 143 ms
54,380 KB
testcase_14 AC 155 ms
55,040 KB
testcase_15 AC 140 ms
54,616 KB
testcase_16 AC 155 ms
54,920 KB
testcase_17 AC 135 ms
54,568 KB
testcase_18 AC 148 ms
54,728 KB
testcase_19 AC 155 ms
55,020 KB
testcase_20 AC 153 ms
55,100 KB
testcase_21 AC 147 ms
54,920 KB
testcase_22 AC 146 ms
54,292 KB
testcase_23 AC 150 ms
54,988 KB
testcase_24 AC 141 ms
54,372 KB
testcase_25 AC 137 ms
54,764 KB
testcase_26 AC 153 ms
54,876 KB
testcase_27 AC 151 ms
54,872 KB
testcase_28 AC 149 ms
54,756 KB
testcase_29 AC 134 ms
54,400 KB
testcase_30 AC 147 ms
55,076 KB
testcase_31 AC 149 ms
54,908 KB
testcase_32 AC 151 ms
54,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        List<Decimal> list = new ArrayList<>();
        for(int i=0; i<n; i++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            list.add(new Decimal(a,b));
        }
        Collections.sort(list, new DecimalComparator());
        
        for(int i=0; i<n; i++) {
            System.out.println( list.get(i).getNumerator() + " " + list.get(i).getDenominator() );
        }
    }
}

class Decimal {
    private int numerator;
    private int denominator;
    
    public Decimal(int numerator, int denominator) {
        this.numerator = numerator;
        this.denominator = denominator;
    }
    
    public int getNumerator() {
        return numerator;
    }
    
    public int getDenominator() {
        return denominator;
    }
}

class DecimalComparator implements Comparator<Decimal> {
    public int compare(Decimal d1, Decimal d2) {
        return d1.getDenominator() * d2.getNumerator() - d2.getDenominator() * d1.getNumerator();
    }
}
0