結果

問題 No.750 Frac #1
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-12 19:36:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 1,000 ms
コード長 605 bytes
コンパイル時間 2,520 ms
コンパイル使用メモリ 77,916 KB
実行使用メモリ 55,180 KB
最終ジャッジ日時 2024-09-13 09:45:56
合計ジャッジ時間 9,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
54,764 KB
testcase_01 AC 168 ms
54,956 KB
testcase_02 AC 170 ms
54,748 KB
testcase_03 AC 158 ms
54,544 KB
testcase_04 AC 170 ms
54,692 KB
testcase_05 AC 173 ms
54,696 KB
testcase_06 AC 170 ms
55,180 KB
testcase_07 AC 168 ms
54,660 KB
testcase_08 AC 168 ms
55,020 KB
testcase_09 AC 170 ms
54,676 KB
testcase_10 AC 165 ms
54,904 KB
testcase_11 AC 171 ms
55,068 KB
testcase_12 AC 168 ms
54,960 KB
testcase_13 AC 168 ms
55,096 KB
testcase_14 AC 170 ms
54,836 KB
testcase_15 AC 171 ms
54,712 KB
testcase_16 AC 170 ms
54,756 KB
testcase_17 AC 170 ms
54,948 KB
testcase_18 AC 166 ms
54,732 KB
testcase_19 AC 170 ms
54,584 KB
testcase_20 AC 169 ms
55,088 KB
testcase_21 AC 163 ms
54,704 KB
testcase_22 AC 168 ms
55,036 KB
testcase_23 AC 168 ms
55,044 KB
testcase_24 AC 170 ms
55,064 KB
testcase_25 AC 169 ms
55,040 KB
testcase_26 AC 169 ms
55,060 KB
testcase_27 AC 169 ms
54,876 KB
testcase_28 AC 167 ms
55,000 KB
testcase_29 AC 169 ms
54,908 KB
testcase_30 AC 167 ms
55,040 KB
testcase_31 AC 167 ms
54,820 KB
testcase_32 AC 169 ms
55,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		
		Bunsu[] ar = new Bunsu[n];
		for (int i=0; i<n; i++) {
			ar[i] = new Bunsu(sc.nextInt(), sc.nextInt());
		}
		Arrays.sort(ar, Comparator.comparing(Bunsu::getShosu).reversed());
		
		for (int i=0; i<n; i++) {
			System.out.println((int)ar[i].bunsi+" "+(int)ar[i].bunbo);
		}
		
	}
}

class Bunsu {
	double bunsi;
	double bunbo;
	double shosu;
	Bunsu(double a, double b) {
		bunsi = a;
		bunbo = b;
		shosu = a/b;
	}
	double getShosu() {return shosu;}
}
0