結果
問題 | No.571 3人兄弟(その2) |
ユーザー |
|
提出日時 | 2017-10-06 23:21:04 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 128 ms / 2,000 ms |
コード長 | 2,610 bytes |
コンパイル時間 | 3,863 ms |
コンパイル使用メモリ | 79,584 KB |
実行使用メモリ | 41,632 KB |
最終ジャッジ日時 | 2024-11-17 01:57:54 |
合計ジャッジ時間 | 5,713 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 12 |
ソースコード
package yukicoder;import java.util.*;public class P571 {public static void main(String[] args) {// TODO Auto-generated method stubScanner sc = new Scanner(System.in);Triple[] ts = new Triple[3];ts[0] = new Triple(sc.nextInt(), sc.nextInt(), 'A');ts[1] = new Triple(sc.nextInt(), sc.nextInt(), 'B');ts[2] = new Triple(sc.nextInt(), sc.nextInt(), 'C');Arrays.sort(ts, new Comparator<Triple>() {public int compare(Triple a, Triple b) {if(a.h != b.h) {return b.h - a.h;} else {return a.w - b.w;}}});for(int i=0; i<3; i++) {System.out.println(ts[i].name);}}static class Triple {int h;int w;char name;Triple(int h, int w, char name) {this.h = h;this.w = w;this.name = name;}}static void print(String s) {System.out.println(s);}// union find lib// usage:// 最初にinitを呼ぶ// root: 直接は呼ばないで// unite: まとめる// same: グループ判定static void init(int par[], int N) {for(int i=0; i<N; i++) {par[i] = i;}}static int root(int x, int [] par) {if(par[x] == x) {return x;} else {return (par[x] = root(par[x], par));}}static boolean same(int x, int y, int[] par) {return root(x, par) == root(y, par);}static void unite(int x, int y, int[] par) {x = root(x, par);y = root(y, par);if(x == y) return;par[x] = y;}// end union find lib// number libstatic int max(int...ls) {int ans = Integer.MIN_VALUE;for(int i=0; i<ls.length; i++) {ans = Math.max(ans, ls[i]);}return ans;}static int min(int...ls) {int ans = Integer.MAX_VALUE;for(int i=0; i<ls.length; i++) {ans = Math.min(ans, ls[i]);}return ans;}static long lcm(long a, long b) {return a*(b/gcd(a, b));}static long gcd(long a, long b) {long ta = Math.max(a, b);long tb = Math.min(a, b);long tmp;while((tmp = ta%tb) != 0) {ta = tb;tb = tmp;}return tb;}static long modcomb(long n, long k, long mod) {if(k==1) {return n;}long ans = 1;for(long i=n; i>=n-k+1; i--) {ans = (ans * i)%mod;}for(long i=k; 0<i; i--) {ans = (ans * modpow(i, mod-2, mod)) % mod;}return ans;}static long modpow(long a, long b, long mod) {if(b==0) return 1;if(b%2==0) {long d = modpow(a, b/2, mod);return (d*d)%mod;} else {return (a*modpow(a, b-1, mod))%mod;}}static int disit(long a, long d) {int count = 0;while(a!=0) {a = a/d;count++;}return count;}// end number lib}