結果
問題 | No.571 3人兄弟(その2) |
ユーザー | koba-e964 |
提出日時 | 2017-10-06 23:26:47 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 813 bytes |
コンパイル時間 | 1,008 ms |
コンパイル使用メモリ | 102,636 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 01:59:31 |
合計ジャッジ時間 | 1,343 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 12 |
ソースコード
#include <algorithm> #include <cassert> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <ctime> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <queue> #include <random> #include <set> #include <sstream> #include <string> #include <utility> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; typedef vector<ll> VL; typedef pair<int, int> PI; const ll mod = 1e9 + 7; int main(void) { vector<pair<PI, char> > pool; REP(i, 0, 3) { int h, w; cin >> h >> w; pool.push_back(make_pair(PI(-h, w), 'A' + i)); } sort(pool.begin(), pool.end()); REP(i, 0, 3) { cout << pool[i].second << endl; } }