https://www.acmicpc.net/problem/1037
해당 값들을 배열로 받아서, 가장 큰 값과 가장 작은 값을 곱하면 된다.
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int N = 0;
cin >> N;
int* arr = new int[N];
for (int i = 0; i < N; i++)
cin >> arr[i];
int small = *min_element(arr, arr + N);
int big = *max_element(arr, arr + N);
cout << small * big << endl;
return 0;
}
'백준 문제풀이 > 실버5' 카테고리의 다른 글
백준 1427번 - 소트인사이드 (0) | 2021.11.03 |
---|---|
백준 1181번 - 단어 정렬 (0) | 2021.10.30 |
백준 1059번 - 좋은 구간 (0) | 2021.10.30 |
백준 1010번 - 다리 놓기 (0) | 2021.10.29 |
백준 1292번 - 쉽게 푸는 문제 (0) | 2021.10.22 |