結果
問題 | 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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
#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; }