結果

問題 No.570 3人兄弟(その1)
ユーザー okkuukenkenokkuukenken
提出日時 2018-10-06 14:52:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 79,608 KB
最終ジャッジ日時 2025-01-06 14:23:32
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <algorithm>
using namespace std;

int main() {
	int ha, hb, hc;
	cin >> ha >> hb >> hc;
	map<int, char> mp({{ha, 'A'}, {hb, 'B'}, {hc, 'C'}});
	for (auto x : mp) cout << x.second << endl;
}
0