結果

問題 No.750 Frac #1
ユーザー tentententen
提出日時 2020-12-09 18:44:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 946 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 42,588 KB
最終ジャッジ日時 2024-09-19 01:36:22
合計ジャッジ時間 9,144 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,240 KB
testcase_01 AC 156 ms
42,268 KB
testcase_02 AC 159 ms
42,428 KB
testcase_03 AC 161 ms
42,376 KB
testcase_04 AC 157 ms
42,372 KB
testcase_05 AC 162 ms
42,508 KB
testcase_06 AC 157 ms
42,108 KB
testcase_07 AC 163 ms
42,220 KB
testcase_08 AC 158 ms
42,492 KB
testcase_09 AC 162 ms
41,984 KB
testcase_10 AC 161 ms
42,496 KB
testcase_11 AC 161 ms
42,468 KB
testcase_12 AC 157 ms
42,496 KB
testcase_13 AC 159 ms
42,240 KB
testcase_14 AC 160 ms
42,328 KB
testcase_15 AC 161 ms
42,492 KB
testcase_16 AC 163 ms
42,164 KB
testcase_17 AC 158 ms
42,348 KB
testcase_18 AC 157 ms
42,364 KB
testcase_19 AC 156 ms
42,268 KB
testcase_20 AC 158 ms
42,148 KB
testcase_21 AC 160 ms
42,416 KB
testcase_22 AC 160 ms
42,488 KB
testcase_23 AC 165 ms
42,432 KB
testcase_24 AC 163 ms
42,224 KB
testcase_25 AC 162 ms
42,160 KB
testcase_26 AC 161 ms
42,240 KB
testcase_27 AC 164 ms
42,588 KB
testcase_28 AC 160 ms
42,436 KB
testcase_29 AC 159 ms
42,364 KB
testcase_30 AC 161 ms
42,240 KB
testcase_31 AC 159 ms
42,208 KB
testcase_32 AC 159 ms
42,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        Num[] nums = new Num[n];
        for (int i = 0; i < n; i++) {
            nums[i] = new Num(sc.nextInt(), sc.nextInt());
        }
        Arrays.sort(nums);
        StringBuilder sb = new StringBuilder();
        for (Num x : nums) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Num implements Comparable<Num> {
        int child;
        int mother;
        
        public Num(int child, int mother) {
            this.child = child;
            this.mother = mother;
        }
        
        public int compareTo(Num another) {
            return another.child * mother - child * another.mother;
        }
        
        public String toString() {
            return child + " " + mother;
        }
    }
}
0