結果

問題 No.571 3人兄弟(その2)
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-29 09:39:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 774 bytes
コンパイル時間 4,346 ms
コンパイル使用メモリ 80,944 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-11-22 05:04:27
合計ジャッジ時間 6,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,456 KB
testcase_01 AC 139 ms
41,664 KB
testcase_02 AC 138 ms
41,476 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 140 ms
41,468 KB
testcase_06 AC 138 ms
41,436 KB
testcase_07 AC 139 ms
41,596 KB
testcase_08 WA -
testcase_09 AC 138 ms
41,788 KB
testcase_10 AC 138 ms
41,428 KB
testcase_11 AC 140 ms
41,420 KB
testcase_12 WA -
testcase_13 AC 133 ms
40,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Scanner;

public class No571 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        LinkedHashMap<String, Integer[]> map = new LinkedHashMap<>();
        map.put("A", new Integer[]{s.nextInt(), s.nextInt()});
        map.put("B", new Integer[]{s.nextInt(), s.nextInt()});
        map.put("C", new Integer[]{s.nextInt(), s.nextInt()});
        map.entrySet().stream()
            .sorted(Map.Entry.comparingByValue((o1, o2) -> {
                if (o1[0] < o2[0] || o1[0] == o2[0] && o1[1] < o2[1]) {
                    return 1;
                }
                return -1;
            }))
            .forEach(e -> System.out.println(e.getKey()));
    }
}
0