結果

問題 No.571 3人兄弟(その2)
ユーザー zaichuzaichu
提出日時 2017-10-22 17:07:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 181,140 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-21 13:48:14
合計ジャッジ時間 2,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long gcd(long long x, long long y)
{
    if (y == 0)
        return x;
    return gcd(y, x % y);
}

long long lcm(long long x, long long y)
{
    if (x == 0 || y == 0)
        return 0;
    return x / gcd(x, y) * y;
}

int main()
{
    vector<pair<int, int>> HW(3);
    map<pair<int, int>, char> mp;
    for (int i = 0; i < 3; i++)
    {
        int H, W;
        cin >> H >> W;
        HW[i] = pair<int, int>(H, W);
        mp[pair<int, int>(H, W)] = 'A' + i;
    }
    sort(HW.begin(), HW.end(), ::greater<pair<int, int>>());
    for (int i = 0; i < 2; i++)
    {
        if (HW[i].first == HW[i + 1].first && HW[i].second > HW[i + 1].second)
            swap(HW[i], HW[i + 1]);
    }
    for (int i = 0; i < 3; i++)
    {
        cout << mp[HW[i]] << endl;
    }
}
0