Recent Posts
Notice
No Rules Rules
대지 (feat. 백준, 9063번) 본문
728x90
반응형
대지
https://www.acmicpc.net/problem/9063
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
pair<int, int> min(10000, 10000), max(-10000, -10000);
cin >> N;
for(register int n = 0, a, b; n < N; ++n){
cin >> a >> b;
if(min.first > a)
min.first = a;
if(min.second > b)
min.second = b;
if(max.first < a)
max.first = a;
if(max.second < b)
max.second = b;
}
cout << (max.first - min.first) * (max.second - min.second);
return 0;
}
// *&)*@*
반응형
최소값, 최대값을 구하는 단순한 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
전력난 (feat. 백준, 6497번) (0) | 2023.03.22 |
---|---|
세 막대 (feat. 백준, 14215번) (0) | 2023.03.22 |
나만 안되는 연애 (feat. 백준, 14621번) (0) | 2023.03.21 |
삼각형과 세 변 (feat. 백준, 5073번) (0) | 2023.03.20 |
삼각형 외우기 (feat. 백준, 10101번) (0) | 2023.03.20 |
Comments