結果

問題 No.571 3人兄弟(その2)
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-30 17:33:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 770 bytes
コンパイル時間 4,512 ms
コンパイル使用メモリ 94,124 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-11-22 10:47:50
合計ジャッジ時間 6,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,652 KB
testcase_01 AC 146 ms
41,272 KB
testcase_02 AC 143 ms
41,240 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 131 ms
40,112 KB
testcase_06 AC 145 ms
41,628 KB
testcase_07 AC 147 ms
41,644 KB
testcase_08 WA -
testcase_09 AC 144 ms
41,416 KB
testcase_10 AC 144 ms
41,320 KB
testcase_11 AC 166 ms
41,600 KB
testcase_12 WA -
testcase_13 AC 145 ms
41,528 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] == hu2[0] && hu1[1] < hu2[1]) {
                        return 1;
                    } else {
                        return -1;
                    }
                })).forEach(m -> System.out.println(m.getKey()));
    }
}
0