結果

問題 No.570 3人兄弟(その1)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 16:23:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 77,208 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-09-13 10:04:50
合計ジャッジ時間 4,337 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
53,888 KB
testcase_01 AC 142 ms
54,048 KB
testcase_02 AC 144 ms
54,252 KB
testcase_03 AC 141 ms
54,032 KB
testcase_04 AC 142 ms
54,068 KB
testcase_05 AC 139 ms
53,916 KB
testcase_06 AC 141 ms
54,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		Human[] brother = new Human[3];
		for (int i=0; i<3; i++) {
			brother[i] = new Human(String.valueOf((char)(i+65)), sc.nextInt());
		}
		Arrays.sort(brother, Comparator.comparing(Human::getHeight).reversed());
		
		for (int i=0; i<3; i++) {
			System.out.println(brother[i].name);
		}
		
	}
}

class Human {
	String name;
	int height;
	Human(String s, int n) {
		name = s;
		height = n;
	}
	int getHeight() {return height;}
}
0