結果
問題 | No.571 3人兄弟(その2) |
ユーザー | ohagi_1182 |
提出日時 | 2017-10-07 03:28:37 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 142 ms / 2,000 ms |
コード長 | 806 bytes |
コンパイル時間 | 2,780 ms |
コンパイル使用メモリ | 78,008 KB |
実行使用メモリ | 41,660 KB |
最終ジャッジ日時 | 2024-11-17 03:29:06 |
合計ジャッジ時間 | 5,076 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,444 KB |
testcase_01 | AC | 138 ms
41,236 KB |
testcase_02 | AC | 138 ms
41,312 KB |
testcase_03 | AC | 138 ms
41,420 KB |
testcase_04 | AC | 138 ms
41,236 KB |
testcase_05 | AC | 142 ms
41,252 KB |
testcase_06 | AC | 140 ms
41,492 KB |
testcase_07 | AC | 138 ms
41,136 KB |
testcase_08 | AC | 139 ms
41,440 KB |
testcase_09 | AC | 141 ms
41,364 KB |
testcase_10 | AC | 137 ms
41,660 KB |
testcase_11 | AC | 138 ms
41,236 KB |
testcase_12 | AC | 139 ms
41,308 KB |
testcase_13 | AC | 140 ms
41,116 KB |
ソースコード
package yukicoder174; import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int h1 = sc.nextInt(),w1 = sc.nextInt(); int h2 = sc.nextInt(),w2 = sc.nextInt(); int h3 = sc.nextInt(),w3 = sc.nextInt(); Pair[] p = {new Pair(h1, w1, 'A'), new Pair(h2, w2, 'B'), new Pair(h3, w3, 'C')}; Arrays.sort(p, new Comparator<Pair>() { public int compare(Pair p1, Pair p2) { if(p2.h == p1.h) { return p1.w - p2.w; } return p2.h - p1.h; } }); for(int i = 0 ; i < 3 ; i++) { System.out.println(p[i].c); } } public static class Pair { int h; int w; char c; Pair(int h, int w, char c) { this.h = h; this.w = w; this.c = c; } } }