https://www.acmicpc.net/problem/1037
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main() {
int tc,tmp;
vector<int> n;
cin >> tc;
for (int i = 0; i < tc; i++) {
cin >> tmp;
n.push_back(tmp);
}
sort(n.begin(), n.end());
cout << n.at(0)*n.at(tc-1);
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 1057번 : 토너먼트 (0) | 2019.04.03 |
---|---|
[C++] 백준 1076번 : 저항 (0) | 2019.04.02 |
[C++] 백준 1977번 : 완전제곱수 (0) | 2019.04.02 |
[C++] 백준 2010번 : 플러그 (0) | 2019.04.02 |
[C++] 백준 10866번 : 덱 (0) | 2019.04.02 |