結果
| 問題 |
No.570 3人兄弟(その1)
|
| コンテスト | |
| ユーザー |
trineutron
|
| 提出日時 | 2020-04-19 17:28:43 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 244 bytes |
| コンパイル時間 | 2,171 ms |
| コンパイル使用メモリ | 198,520 KB |
| 最終ジャッジ日時 | 2025-01-09 21:39:53 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 5 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
map<int, char> m;
for (int i = 0; i < 3; i++) {
int h;
cin >> h;
m[h] = 'A' + i;
}
for (auto x : m) {
cout << x.second << endl;
}
}
trineutron