結果

問題 No.571 3人兄弟(その2)
ユーザー tentententen
提出日時 2020-09-07 20:39:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 2,387 ms
コンパイル使用メモリ 76,764 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-05-07 00:07:29
合計ジャッジ時間 5,356 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,256 KB
testcase_01 AC 141 ms
41,352 KB
testcase_02 AC 142 ms
41,364 KB
testcase_03 AC 140 ms
41,348 KB
testcase_04 AC 143 ms
41,248 KB
testcase_05 AC 144 ms
41,108 KB
testcase_06 AC 143 ms
41,364 KB
testcase_07 AC 143 ms
41,428 KB
testcase_08 AC 143 ms
40,988 KB
testcase_09 AC 144 ms
41,132 KB
testcase_10 AC 143 ms
41,312 KB
testcase_11 AC 142 ms
41,644 KB
testcase_12 AC 142 ms
41,312 KB
testcase_13 AC 143 ms
41,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	Person[] arr = new Person[3];
    	for (int i = 0; i < 3; i++) {
    	    arr[i] = new Person((char)(i + 'A'), sc.nextInt(), sc.nextInt());
    	}
    	Arrays.sort(arr);
    	StringBuilder sb = new StringBuilder();
    	for (Person p : arr) {
    	    sb.append(p.name).append("\n");
    	}
    	System.out.print(sb);
    }
    
    static class Person implements Comparable<Person> {
        char name;
        int height;
        int weight;
        
        public Person(char name, int height, int weight) {
            this.name = name;
            this.height = height;
            this.weight = weight;
        }
        
        public int compareTo(Person another) {
            if (height == another.height) {
                return weight - another.weight;
            } else {
                return another.height - height;
            }
        }
    }

}
0