結果

問題 No.571 3人兄弟(その2)
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-29 09:42:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 3,791 ms
コンパイル使用メモリ 80,584 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-11-22 05:04:45
合計ジャッジ時間 6,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,388 KB
testcase_01 AC 138 ms
41,572 KB
testcase_02 AC 136 ms
41,528 KB
testcase_03 AC 138 ms
41,388 KB
testcase_04 AC 134 ms
41,380 KB
testcase_05 AC 139 ms
41,268 KB
testcase_06 AC 126 ms
40,572 KB
testcase_07 AC 137 ms
41,560 KB
testcase_08 AC 123 ms
40,552 KB
testcase_09 AC 140 ms
41,456 KB
testcase_10 AC 140 ms
41,384 KB
testcase_11 AC 138 ms
41,404 KB
testcase_12 AC 140 ms
41,400 KB
testcase_13 AC 135 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
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] || Objects.equals(o1[0], o2[0]) && o1[1] > o2[1]) {
                    return 1;
                }
                return -1;
            }))
            .forEach(e -> System.out.println(e.getKey()));
    }
}
0