結果

問題 No.570 3人兄弟(その1)
ユーザー ldsybldsyb
提出日時 2017-10-06 22:21:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 1,441 ms
コンパイル使用メモリ 71,552 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 00:34:10
合計ジャッジ時間 1,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

int main(){
	pair<int, char> p[3];
	for(int i = 0; i < 3; i++){
		cin >> p[i].first;
		p[i].second = "ABC"[i];
	}
	sort(p, p + 3);
	reverse(p, p + 3);
	for(int i = 0; i < 3; i++){
		cout << p[i].second << endl;
	}
	return 0;
}
0