結果

問題 No.571 3人兄弟(その2)
ユーザー ohreitetsuohreitetsu
提出日時 2017-11-06 23:11:56
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 56,636 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 06:26:12
合計ジャッジ時間 1,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
struct X{
	int h;
	int w;
	X(int H,int W){
		h=H;
		w=W;
	}
	bool operator>(X &x){
		if (h>x.h){
			return true;
		}else if (h==x.h){
			return w<x.w;
		}
		return false;
	}
};

int main(int argc, char* argv[])
{
	int Ha,Wa;
	int Hb,Wb;
	int Hc,Wc;


	cin>>Ha>>Wa;
	cin>>Hb>>Wb;
	cin>>Hc>>Wc;
	X x1(Ha,Wa);
	X x2(Hb,Wb);
	X x3(Hc,Wc);
	
	if (x1>x2 && x1>x3){
		//Max
		cout<<"A"<<endl;
	}else if (x2>x1 && x3>x1){
		//Min
		cout<<"C"<<endl;
	}else{
		cout<<"B"<<endl;
	}

	if (x2>x1 && x2>x3){
		//Max
		cout<<"A"<<endl;
	}else if (x1>x2 && x3>x2){
		//Min
		cout<<"C"<<endl;
	}else{
		cout<<"B"<<endl;
	}

	if (x3>x1 && x3>x2){
		//Max
		cout<<"A"<<endl;
	}else if (x1>x3 && x2>x3){
		//Min
		cout<<"C"<<endl;
	}else{
		cout<<"B"<<endl;
	}

	return 0;
}
0