結果

問題 No.750 Frac #1
ユーザー 37zigen37zigen
提出日時 2018-11-09 21:25:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 836 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 83,708 KB
実行使用メモリ 55,132 KB
最終ジャッジ日時 2024-11-21 05:30:40
合計ジャッジ時間 8,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
54,932 KB
testcase_01 AC 146 ms
54,924 KB
testcase_02 AC 149 ms
55,060 KB
testcase_03 AC 149 ms
54,864 KB
testcase_04 AC 149 ms
54,976 KB
testcase_05 AC 148 ms
54,896 KB
testcase_06 AC 146 ms
55,088 KB
testcase_07 AC 157 ms
54,900 KB
testcase_08 AC 147 ms
55,020 KB
testcase_09 AC 151 ms
54,876 KB
testcase_10 AC 148 ms
54,888 KB
testcase_11 AC 146 ms
54,720 KB
testcase_12 AC 156 ms
54,908 KB
testcase_13 AC 146 ms
55,132 KB
testcase_14 AC 157 ms
55,008 KB
testcase_15 AC 149 ms
55,044 KB
testcase_16 AC 153 ms
55,084 KB
testcase_17 AC 148 ms
54,804 KB
testcase_18 AC 146 ms
55,028 KB
testcase_19 AC 146 ms
55,084 KB
testcase_20 AC 148 ms
54,760 KB
testcase_21 AC 150 ms
54,756 KB
testcase_22 AC 150 ms
55,080 KB
testcase_23 AC 149 ms
54,884 KB
testcase_24 AC 155 ms
55,056 KB
testcase_25 AC 148 ms
54,996 KB
testcase_26 AC 148 ms
55,020 KB
testcase_27 AC 157 ms
55,088 KB
testcase_28 AC 157 ms
54,996 KB
testcase_29 AC 159 ms
54,908 KB
testcase_30 AC 157 ms
55,016 KB
testcase_31 AC 157 ms
54,972 KB
testcase_32 AC 148 ms
54,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[][] x = new long[n][2];
		for (int i = 0; i < n; ++i) {
			x[i][0] = sc.nextLong();
			x[i][1] = sc.nextLong();
		}
		Arrays.sort(x, new Comparator<long[]>() {
			@Override
			public int compare(long[] o1, long[] o2) {
				return Double.compare((double) o1[0] / o1[1], (double) o2[0] / o2[1]);
			}
		});
		for (int i = n - 1; i >= 0; --i) {
			System.out.println(x[i][0] + " " + x[i][1]);
		}
	}

	static long gcd(long a, long b) {
		if (a > b)
			return gcd(b, a);
		if (a == 0)
			return b;
		return gcd(b % a, a);
	}

	public static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0