結果

問題 No.750 Frac #1
ユーザー masamasa
提出日時 2019-01-11 10:29:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 674 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 43,132 KB
最終ジャッジ日時 2024-05-05 14:11:44
合計ジャッジ時間 8,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
42,124 KB
testcase_01 AC 130 ms
42,220 KB
testcase_02 AC 136 ms
42,328 KB
testcase_03 AC 154 ms
43,036 KB
testcase_04 AC 159 ms
42,924 KB
testcase_05 AC 151 ms
42,256 KB
testcase_06 AC 162 ms
42,892 KB
testcase_07 AC 156 ms
43,048 KB
testcase_08 AC 147 ms
42,464 KB
testcase_09 AC 160 ms
42,832 KB
testcase_10 AC 151 ms
42,472 KB
testcase_11 AC 159 ms
42,972 KB
testcase_12 AC 139 ms
42,660 KB
testcase_13 AC 157 ms
42,996 KB
testcase_14 AC 154 ms
43,000 KB
testcase_15 AC 154 ms
43,100 KB
testcase_16 AC 161 ms
43,016 KB
testcase_17 AC 167 ms
42,808 KB
testcase_18 AC 148 ms
43,040 KB
testcase_19 AC 159 ms
43,048 KB
testcase_20 AC 156 ms
43,132 KB
testcase_21 AC 130 ms
42,616 KB
testcase_22 AC 148 ms
42,968 KB
testcase_23 AC 148 ms
43,084 KB
testcase_24 AC 146 ms
42,684 KB
testcase_25 AC 147 ms
42,784 KB
testcase_26 AC 151 ms
42,884 KB
testcase_27 AC 143 ms
41,956 KB
testcase_28 AC 152 ms
42,480 KB
testcase_29 AC 142 ms
42,704 KB
testcase_30 AC 149 ms
42,532 KB
testcase_31 AC 165 ms
42,812 KB
testcase_32 AC 149 ms
43,096 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 (int 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