結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
42,424 KB
testcase_01 AC 151 ms
42,676 KB
testcase_02 AC 137 ms
42,320 KB
testcase_03 AC 135 ms
42,136 KB
testcase_04 AC 123 ms
42,104 KB
testcase_05 AC 142 ms
42,008 KB
testcase_06 AC 126 ms
42,192 KB
testcase_07 AC 132 ms
42,252 KB
testcase_08 AC 148 ms
42,508 KB
testcase_09 AC 132 ms
42,180 KB
testcase_10 AC 138 ms
42,736 KB
testcase_11 AC 150 ms
42,780 KB
testcase_12 AC 135 ms
42,464 KB
testcase_13 AC 136 ms
42,472 KB
testcase_14 AC 141 ms
42,808 KB
testcase_15 AC 132 ms
42,212 KB
testcase_16 AC 160 ms
42,700 KB
testcase_17 AC 159 ms
42,588 KB
testcase_18 AC 141 ms
42,240 KB
testcase_19 AC 147 ms
42,536 KB
testcase_20 AC 154 ms
42,732 KB
testcase_21 AC 143 ms
41,568 KB
testcase_22 AC 140 ms
42,336 KB
testcase_23 AC 141 ms
42,204 KB
testcase_24 AC 145 ms
42,604 KB
testcase_25 AC 145 ms
42,492 KB
testcase_26 AC 148 ms
42,672 KB
testcase_27 AC 138 ms
42,232 KB
testcase_28 AC 148 ms
42,408 KB
testcase_29 AC 152 ms
42,668 KB
testcase_30 AC 146 ms
41,968 KB
testcase_31 AC 141 ms
42,588 KB
testcase_32 AC 130 ms
42,052 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