結果

問題 No.571 3人兄弟(その2)
ユーザー fukuseifukusei
提出日時 2018-05-05 16:43:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 81,080 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-06-28 01:58:13
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,208 KB
testcase_01 AC 131 ms
41,356 KB
testcase_02 AC 129 ms
41,292 KB
testcase_03 AC 135 ms
41,276 KB
testcase_04 AC 131 ms
41,160 KB
testcase_05 AC 130 ms
41,464 KB
testcase_06 AC 130 ms
41,504 KB
testcase_07 AC 114 ms
39,872 KB
testcase_08 AC 117 ms
39,884 KB
testcase_09 AC 131 ms
41,176 KB
testcase_10 AC 123 ms
39,888 KB
testcase_11 AC 136 ms
41,300 KB
testcase_12 AC 135 ms
41,288 KB
testcase_13 AC 128 ms
40,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
class Brother {
	int cm;
	int kg;
	String name;

	public Brother(int cm, int kg ,String name) {
		this.cm = cm;
		this.kg = kg;
		this.name = name;
	}
}
class paiza {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		Brother[] brother = new Brother[3];
		boolean check = false;
		Brother tmp;
		//Brother[] sort = new Brother[3];
		String[] index = {"A","B","C"};

		for (int i = 0; i < 3; i++) {
			brother[i] = new Brother(sc.nextInt(),sc.nextInt(),index[i]);
		}

		do {
			check = false;
			if (brother[0].cm == brother[1].cm) {
				if(brother[0].kg > brother[1].kg) {
					tmp = brother[0];
					brother[0] = brother[1];
					brother[1] = tmp;
					check = true;
				}
			}
			
			if (brother[1].cm == brother[2].cm) {
				if(brother[1].kg > brother[2].kg) {
					tmp = brother[1];
					brother[1] = brother[2];
					brother[2] = tmp;
					check = true;
				}
			}
			
			if (brother[0].cm == brother[2].cm) {
				if(brother[0].kg > brother[2].kg) {
					tmp = brother[2];
					brother[2] = brother[0];
					brother[0] = tmp;
					check = true;
				}
			}
		} while (check);

		Arrays.sort( brother, (a,b)-> b.cm - a.cm ); 

		for(int i = 0; i < brother.length; i++) {
			System.out.println(brother[i].name);
		}
	}
}
0