結果
| 問題 |
No.570 3人兄弟(その1)
|
| コンテスト | |
| ユーザー |
hogeover30
|
| 提出日時 | 2018-01-17 17:04:04 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| コンパイル時間 | 2,227 ms |
| コンパイル使用メモリ | 195,168 KB |
| 最終ジャッジ日時 | 2025-01-05 07:34:15 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 5 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main()
{
pair<int, char> h[3];
for(int i=0; i<3; ++i) cin>>h[i].first, h[i].second=i;
sort(h, h+3);
for(auto& [x, y]: h) cout<<y+'A'<<endl;
}
hogeover30