結果
問題 | No.570 3人兄弟(その1) |
ユーザー |
![]() |
提出日時 | 2020-03-13 18:00:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 302 bytes |
コンパイル時間 | 2,270 ms |
コンパイル使用メモリ | 173,104 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 11:31:31 |
合計ジャッジ時間 | 2,214 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 5 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main(){vector<pair<int, char>> h( 3 );h[0].second = 'A';h[1].second = 'B';h[2].second = 'C';cin >> h[0].first >> h[1].first >> h[2].first;sort( h.rbegin(), h.rend() );for( int i = 0; i < 3; i++ ) {cout << h[i].second << endl;}}