結果

問題 No.570 3人兄弟(その1)
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-08 18:39:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 4,796 ms
コンパイル使用メモリ 84,152 KB
実行使用メモリ 41,248 KB
最終ジャッジ日時 2024-11-17 05:44:28
合計ジャッジ時間 4,625 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,832 KB
testcase_01 AC 116 ms
40,064 KB
testcase_02 AC 112 ms
41,152 KB
testcase_03 AC 103 ms
40,064 KB
testcase_04 AC 115 ms
41,084 KB
testcase_05 AC 131 ms
41,200 KB
testcase_06 AC 114 ms
41,248 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