結果
問題 | No.570 3人兄弟(その1) |
ユーザー | takeya_okino |
提出日時 | 2017-10-22 18:12:03 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 132 ms / 2,000 ms |
コード長 | 429 bytes |
コンパイル時間 | 3,091 ms |
コンパイル使用メモリ | 75,060 KB |
実行使用メモリ | 50,180 KB |
最終ジャッジ日時 | 2024-11-21 13:49:54 |
合計ジャッジ時間 | 3,634 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
48,184 KB |
testcase_01 | AC | 129 ms
48,484 KB |
testcase_02 | AC | 126 ms
48,152 KB |
testcase_03 | AC | 127 ms
47,928 KB |
testcase_04 | AC | 129 ms
50,180 KB |
testcase_05 | AC | 129 ms
47,968 KB |
testcase_06 | AC | 132 ms
48,284 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int[] h = {a, b, c}; Arrays.sort(h); for(int i = 2; i >= 0; i--) { if(h[i] == a) System.out.println("A"); if(h[i] == b) System.out.println("B"); if(h[i] == c) System.out.println("C"); } } }