結果
問題 | No.571 3人兄弟(その2) |
ユーザー | かに |
提出日時 | 2017-12-17 15:40:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 921 bytes |
コンパイル時間 | 1,948 ms |
コンパイル使用メモリ | 180,924 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 10:20:58 |
合計ジャッジ時間 | 2,834 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
ソースコード
#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; }