結果
問題 | No.571 3人兄弟(その2) |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-11 03:07:30 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 138 ms / 2,000 ms |
コード長 | 542 bytes |
コンパイル時間 | 2,353 ms |
コンパイル使用メモリ | 76,464 KB |
実行使用メモリ | 41,632 KB |
最終ジャッジ日時 | 2024-11-07 00:25:30 |
合計ジャッジ時間 | 5,136 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
40,228 KB |
testcase_01 | AC | 132 ms
41,388 KB |
testcase_02 | AC | 130 ms
40,924 KB |
testcase_03 | AC | 130 ms
41,324 KB |
testcase_04 | AC | 117 ms
39,928 KB |
testcase_05 | AC | 122 ms
41,632 KB |
testcase_06 | AC | 136 ms
41,472 KB |
testcase_07 | AC | 137 ms
41,340 KB |
testcase_08 | AC | 137 ms
41,456 KB |
testcase_09 | AC | 138 ms
41,500 KB |
testcase_10 | AC | 136 ms
41,500 KB |
testcase_11 | AC | 130 ms
41,352 KB |
testcase_12 | AC | 132 ms
41,492 KB |
testcase_13 | AC | 138 ms
41,344 KB |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int[] height = new int[3]; int[] weight = new int[3]; String[] name = {"A","B","C"}; Map<Integer,String> map = new TreeMap<>(Comparator.reverseOrder()); for (int i=0; i<3; i++) { height[i] = sc.nextInt()*1000; weight[i] = -(sc.nextInt()); map.put(height[i]+weight[i],name[i]); } for (Map.Entry<Integer,String> entry : map.entrySet()) { System.out.println(entry.getValue()); } } }