結果

問題 No.750 Frac #1
ユーザー masamasa
提出日時 2019-01-11 10:28:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 674 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 42,964 KB
最終ジャッジ日時 2024-11-27 12:05:19
合計ジャッジ時間 8,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
42,272 KB
testcase_01 AC 152 ms
42,188 KB
testcase_02 AC 156 ms
42,192 KB
testcase_03 AC 156 ms
42,260 KB
testcase_04 AC 152 ms
42,712 KB
testcase_05 AC 146 ms
42,376 KB
testcase_06 AC 136 ms
42,040 KB
testcase_07 AC 137 ms
42,420 KB
testcase_08 AC 138 ms
41,736 KB
testcase_09 AC 135 ms
42,124 KB
testcase_10 AC 153 ms
42,452 KB
testcase_11 AC 147 ms
42,408 KB
testcase_12 AC 156 ms
42,896 KB
testcase_13 AC 137 ms
42,256 KB
testcase_14 AC 142 ms
42,188 KB
testcase_15 AC 152 ms
42,320 KB
testcase_16 AC 144 ms
42,356 KB
testcase_17 AC 140 ms
42,652 KB
testcase_18 AC 145 ms
42,288 KB
testcase_19 AC 148 ms
42,572 KB
testcase_20 AC 150 ms
42,568 KB
testcase_21 AC 147 ms
42,588 KB
testcase_22 AC 143 ms
42,092 KB
testcase_23 AC 142 ms
42,312 KB
testcase_24 AC 148 ms
42,160 KB
testcase_25 AC 135 ms
42,064 KB
testcase_26 AC 157 ms
42,964 KB
testcase_27 AC 136 ms
42,232 KB
testcase_28 AC 139 ms
42,040 KB
testcase_29 AC 150 ms
42,592 KB
testcase_30 AC 138 ms
42,072 KB
testcase_31 AC 164 ms
42,784 KB
testcase_32 AC 154 ms
42,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc     = new Scanner(System.in);
        int count  = sc.nextInt();
        Map<Float, String> answer = new TreeMap<Float, String>(Comparator.reverseOrder()); 
        
        for (var i = 0; i < count; i++) {
            float bunsi = sc.nextFloat();
            float bunbo = sc.nextFloat();
            
            answer.put(bunsi / bunbo, (int)bunsi + " " + (int)bunbo);
        }
        
        for (Map.Entry<Float, String> set : answer.entrySet()) {
            System.out.println(set.getValue());
        }
    }
}
0