結果

問題 No.571 3人兄弟(その2)
ユーザー かにかに
提出日時 2017-12-17 15:40:30
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 178,988 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-22 04:26:07
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
#define rep(a,b) for(int a = 0;a < b;a++)
#define REP(i, x, n) for(int i = x; i < n; i++)
#define P(a) cout << a << endl
#define MP(a,b) make_pair(a,b)
#define PB(a) push_back(a)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> vi;
int dx[] = { 1, -1 , 0 , 0 };
int dy[] = { 0,  0,  1, -1 };
ll MOD = 1000000007;
bool compare(pair<int,int> a,pair<int,int> b){
    if(a.first == b.first){
        return a.second < b.second;
    }else{
        return a.first > b.first;
    }
}
void solve() {
    char c[3] = {'A','B','C'};
    vector<pair<int,int>> v;
    map<pair<int,int>,char> m;
    rep(i,3){
        int a,b;
        cin >> a >> b;
        pair<int,int> p = MP(a,b);
        m[p] = c[i];
        v.PB(p);
    }
    sort(v.begin(),v.end(),compare);
    rep(i,3){
        cout << m[v[i]] << endl;
    }
}

int main() {
    solve();
    return 0;
}
0