結果
問題 | No.570 3人兄弟(その1) |
ユーザー | Lavender |
提出日時 | 2019-09-06 07:49:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 402 bytes |
コンパイル時間 | 1,767 ms |
コンパイル使用メモリ | 178,452 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 12:35:29 |
合計ジャッジ時間 | 2,271 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { vector<int> h(3); vector<int> t(3); map<char,int> m; for(int i=0;i<3;i++)cin>>h[i]; t=h; sort(h.begin(),h.end()); for(int i=0;i<3;i++)m['C'-i]=h[i]; for(int i=0;i<3;i++){ for(auto itr=m.begin();itr!=m.end();itr++){ if(t[i]==itr->second)cout<<itr->first<<endl; } } return 0; }