結果

問題 No.570 3人兄弟(その1)
コンテスト
ユーザー cww
提出日時 2017-10-08 18:31:59
言語 C++17
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 590 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,460 ms
コンパイル使用メモリ 220,196 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2026-06-06 18:41:20
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0; i<(n); i++)
#define REP2(i,x,n) for(int i=x; i<(n); i++)
#define ALL(n) begin(n),end(n)
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;
vector<vector<int>> memo( 100 + 1, vector<int>( 10000 + 1, -1 ) );
int main()
{
    map<int, int> mp;
    REP( i, 3 )
    {
        int h;
        cin >> h;
        mp.emplace( h, i );
    }
    for ( auto it = mp.crbegin(); it != mp.crend(); it++ )
    {
        cout << ( (*it).second == 0 ? "A" : (*it).second == 1 ? "B" : "C" ) << endl;
    }
    return 0;
}
0