結果

問題 No.571 3人兄弟(その2)
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-30 16:00:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 784 bytes
コンパイル時間 3,651 ms
コンパイル使用メモリ 76,252 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-05-02 01:22:52
合計ジャッジ時間 6,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,104 KB
testcase_01 AC 128 ms
41,388 KB
testcase_02 AC 130 ms
41,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 128 ms
41,524 KB
testcase_06 AC 128 ms
41,184 KB
testcase_07 AC 128 ms
41,484 KB
testcase_08 WA -
testcase_09 AC 131 ms
41,232 KB
testcase_10 AC 130 ms
41,400 KB
testcase_11 AC 128 ms
41,336 KB
testcase_12 WA -
testcase_13 AC 131 ms
41,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class No574 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Integer[] h = new Integer[3], w = new Integer[3];
        int change;

        for(int i = 0; i < 3; i++) {
            h[i] = sc.nextInt() * 100 + 65 + i;
            w[i] = sc.nextInt();
        }

        Arrays.sort(h, Comparator.reverseOrder());
        for(int i = 0; i < 2; i++) {
            if(h[i] == h[i + 1] && w[i] > w[i + 1]) {
                change = h[i];
                h[i] = h[i + 1];
                h[i + 1] = change;
            }
        }

        for(int each : h) {
            System.out.println((char)(each % 100));
        }
    }
}
0