結果

問題 No.570 3人兄弟(その1)
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-03 21:28:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-06-11 22:01:13
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,416 KB
testcase_01 AC 131 ms
54,100 KB
testcase_02 AC 134 ms
54,188 KB
testcase_03 AC 133 ms
54,420 KB
testcase_04 AC 133 ms
54,100 KB
testcase_05 AC 129 ms
54,232 KB
testcase_06 AC 135 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		int Ha = in.nextInt();
		int Hb = in.nextInt();
		int Hc = in.nextInt();
		
		List<Integer> h = new ArrayList<Integer>();
		h.add(Ha);
		h.add(Hb);
		h.add(Hc);
		
		Collections.sort(h, Comparator.reverseOrder());
		for (int i = 0; i < 3; i++) {
			if (h.get(i) == Ha) {
				System.out.println("A");
			} else if (h.get(i) == Hb) {
				System.out.println("B");
			} else if (h.get(i) == Hc) {
				System.out.println("C");
			}
		}
	}
}
0