結果

問題 No.750 Frac #1
ユーザー masamasa
提出日時 2019-01-11 10:29:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 674 bytes
コンパイル時間 3,077 ms
コンパイル使用メモリ 83,388 KB
実行使用メモリ 42,920 KB
最終ジャッジ日時 2024-11-27 12:08:45
合計ジャッジ時間 8,422 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,524 KB
testcase_01 AC 144 ms
41,884 KB
testcase_02 AC 152 ms
42,764 KB
testcase_03 AC 163 ms
42,692 KB
testcase_04 AC 163 ms
42,524 KB
testcase_05 AC 156 ms
42,716 KB
testcase_06 AC 149 ms
42,504 KB
testcase_07 AC 153 ms
42,680 KB
testcase_08 AC 145 ms
42,428 KB
testcase_09 AC 157 ms
42,664 KB
testcase_10 AC 157 ms
42,920 KB
testcase_11 AC 160 ms
42,740 KB
testcase_12 AC 154 ms
42,420 KB
testcase_13 AC 145 ms
42,432 KB
testcase_14 AC 163 ms
42,652 KB
testcase_15 AC 164 ms
42,472 KB
testcase_16 AC 155 ms
42,716 KB
testcase_17 AC 153 ms
42,788 KB
testcase_18 AC 153 ms
42,776 KB
testcase_19 AC 143 ms
42,612 KB
testcase_20 AC 150 ms
42,380 KB
testcase_21 AC 144 ms
42,780 KB
testcase_22 AC 138 ms
42,252 KB
testcase_23 AC 155 ms
42,592 KB
testcase_24 AC 147 ms
41,784 KB
testcase_25 AC 151 ms
42,748 KB
testcase_26 AC 150 ms
42,916 KB
testcase_27 AC 152 ms
42,556 KB
testcase_28 AC 149 ms
42,676 KB
testcase_29 AC 154 ms
42,604 KB
testcase_30 AC 152 ms
42,716 KB
testcase_31 AC 142 ms
42,424 KB
testcase_32 AC 157 ms
42,656 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