#include<iostream>
#include <queue>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
priority_queue<int,vector<int>,greater<int>>pq;
int A, B, C; cin >> A >> B >> C;
pq.push(A); pq.push(B); pq.push(C);
pq.pop();
cout << pq.top();
}
'Algorithm 🧑🏻💻 > 백준(BOJ)' 카테고리의 다른 글
[백준,c++] 10820번 - 문자열 분석 (0) | 2021.10.24 |
---|---|
[백준,c++] 10819번 - 차이를 최대로 (0) | 2021.10.24 |
[백준,c++] 10818번 - 최소, 최대 (0) | 2021.10.24 |
[백준,c++] 10816번 - 숫자카드 2 (0) | 2021.10.24 |
[백준,c++] 10815번 - 숫자카드 (0) | 2021.10.24 |
[백준,c++] 10814번 - 나이순 정렬 (0) | 2021.10.24 |
댓글