結果

問題 No.571 3人兄弟(その2)
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-30 17:35:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 3,850 ms
コンパイル使用メモリ 86,624 KB
実行使用メモリ 41,916 KB
最終ジャッジ日時 2024-11-22 10:48:10
合計ジャッジ時間 6,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,680 KB
testcase_01 AC 138 ms
41,416 KB
testcase_02 AC 125 ms
40,128 KB
testcase_03 AC 141 ms
41,568 KB
testcase_04 AC 141 ms
41,380 KB
testcase_05 AC 140 ms
41,540 KB
testcase_06 AC 127 ms
40,332 KB
testcase_07 AC 139 ms
41,916 KB
testcase_08 AC 140 ms
41,540 KB
testcase_09 AC 141 ms
41,528 KB
testcase_10 AC 139 ms
41,424 KB
testcase_11 AC 138 ms
41,452 KB
testcase_12 AC 145 ms
41,656 KB
testcase_13 AC 139 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class No574 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        HashMap<Character, Integer[]> map = new HashMap<>();

        for(int i = 0; i < 3; i++) {
            map.put((char)(65 + i), new Integer[]{sc.nextInt(), sc.nextInt()});
        }

        map.entrySet().stream().sorted(
                Map.Entry.comparingByValue((hu1, hu2) -> {
                    if(hu1[0] < hu2[0] || hu1[0].equals(hu2[0]) && hu1[1] > hu2[1]) {
                        return 1;
                    } else {
                        return -1;
                    }
                })
        ).forEach(m -> System.out.println(m.getKey()));
    }
}
0