結果

問題 No.571 3人兄弟(その2)
ユーザー shinwisteriashinwisteria
提出日時 2018-03-08 20:19:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 2,914 ms
コンパイル使用メモリ 76,240 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-10-05 08:13:56
合計ジャッジ時間 5,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,680 KB
testcase_01 AC 98 ms
40,196 KB
testcase_02 AC 98 ms
39,784 KB
testcase_03 AC 98 ms
39,960 KB
testcase_04 AC 108 ms
40,844 KB
testcase_05 AC 99 ms
39,864 KB
testcase_06 AC 92 ms
39,584 KB
testcase_07 AC 106 ms
41,328 KB
testcase_08 AC 108 ms
40,816 KB
testcase_09 AC 95 ms
39,632 KB
testcase_10 AC 100 ms
39,944 KB
testcase_11 AC 101 ms
40,548 KB
testcase_12 AC 107 ms
40,944 KB
testcase_13 AC 104 ms
40,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Map.Entry;
import java.util.Scanner;
import java.util.TreeMap;
public class Con571 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		TreeMap<Integer , String> hw = new TreeMap<>();
		hw.put(s.nextInt() * 1000 + 100 - s.nextInt(), "A");
		hw.put(s.nextInt() * 1000 + 100 - s.nextInt(), "B");
		hw.put(s.nextInt() * 1000 + 100 - s.nextInt(), "C");
		s.close();

		for(int i = 0;i < 3;i++){
			Entry<Integer , String> ent = hw.pollLastEntry();
			System.out.println(ent.getValue());
		}
	}

}
0