結果

問題 No.571 3人兄弟(その2)
ユーザー nCk_cvnCk_cv
提出日時 2017-12-31 18:01:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 78,256 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-06-01 10:07:28
合計ジャッジ時間 5,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,220 KB
testcase_01 AC 138 ms
54,060 KB
testcase_02 AC 137 ms
54,196 KB
testcase_03 AC 138 ms
54,176 KB
testcase_04 AC 138 ms
54,024 KB
testcase_05 AC 136 ms
54,184 KB
testcase_06 AC 139 ms
54,356 KB
testcase_07 AC 139 ms
53,896 KB
testcase_08 AC 138 ms
54,272 KB
testcase_09 AC 142 ms
54,336 KB
testcase_10 AC 139 ms
54,032 KB
testcase_11 AC 137 ms
53,980 KB
testcase_12 AC 136 ms
54,180 KB
testcase_13 AC 140 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.image.IndexColorModel;
import java.util.*;
import java.util.stream.Collector;
import java.util.stream.*;

public class Main {

    public static class Data implements Comparable<Data> {
        char ID;
        int he;
        int we;
        Data(char a, int b, int c) {
            ID = a;
            he = b;
            we = c;
        }

        public int compareTo(Data o) {
            if(o.he == this.he) return -o.we + this.we;
            return -this.he + o.he;
        }
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Data[] d = new Data[3];
        for(int i = 0; i < 3; i++) {
            d[i] = new Data((char)('A' + i),sc.nextInt(),sc.nextInt());
        }
        Arrays.sort(d);
        for(int i = 0; i < 3; i++) {
            System.out.println(d[i].ID);
        }


    }
}
0