結果
問題 | No.571 3人兄弟(その2) |
ユーザー | th90tk297 |
提出日時 | 2017-10-23 19:13:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 626 bytes |
コンパイル時間 | 669 ms |
コンパイル使用メモリ | 80,540 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 15:46:43 |
合計ジャッジ時間 | 1,218 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
ソースコード
#include<iostream> #include<queue> using namespace std; int main() { priority_queue<pair<pair<int, int>, char>>pq; pair<pair<int, int>, char>p; cin >> p.first.first >> p.first.second; p.first.second = 200 - p.first.second; p.second = 'A'; pq.push(p); cin >> p.first.first >> p.first.second; p.first.second = 200 - p.first.second; p.second = 'B'; pq.push(p); cin >> p.first.first >> p.first.second; p.first.second = 200 - p.first.second; p.second = 'C'; pq.push(p); cout << pq.top().second << endl; pq.pop(); cout << pq.top().second << endl; pq.pop(); cout << pq.top().second << endl; pq.pop(); return 0; }