結果

問題 No.570 3人兄弟(その1)
ユーザー bellbell
提出日時 2021-03-20 00:19:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 76,424 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-11-19 03:24:53
合計ジャッジ時間 3,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,520 KB
testcase_01 AC 124 ms
41,556 KB
testcase_02 AC 108 ms
41,836 KB
testcase_03 AC 121 ms
41,140 KB
testcase_04 AC 118 ms
41,540 KB
testcase_05 AC 120 ms
41,268 KB
testcase_06 AC 122 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
    int [] h = new int [3];
    HashMap <Integer, String> map = new HashMap<>();
    for (int i = 0; i < 3; i++) {
      h[i] = sc.nextInt();
    }
      map.put (h[0], "A");
      map.put (h[1], "B");
      map.put (h[2], "C");
      Arrays.sort(h);

      for (int i = 0; i < 3; i++) {
        System.out.println(map.get(h[2-i]));
      }
      sc.close();
    }
  }
0