結果

問題 No.570 3人兄弟(その1)
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-08 18:39:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 3,700 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-04-28 13:33:25
合計ジャッジ時間 4,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
52,992 KB
testcase_01 AC 132 ms
53,908 KB
testcase_02 AC 119 ms
52,988 KB
testcase_03 AC 118 ms
53,020 KB
testcase_04 AC 133 ms
54,232 KB
testcase_05 AC 133 ms
54,168 KB
testcase_06 AC 134 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class No570 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Integer[] h = new Integer[3];
        for(int i = 0; i < h.length; i++) {
            h[i] = sc.nextInt();
        }

        Integer[] h2 = h.clone();
        Arrays.sort(h, Comparator.reverseOrder());
        for(Integer i : h) {
            if(i == h2[0]) {
                System.out.println('A');
            } else if(i == h2[1]) {
                System.out.println('B');
            } else {
                System.out.println('C');
            }
        }
    }
}
0