| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1337150 | model_code | Area (NOI23_area) | C++20 | 1 ms | 344 KiB |
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int max_area=0;
for(int i=0;i<n;i++){
int height,width;
cin>>height>>width;
int area=height*width;
if(area>max_area)max_area=area;
}
cout<<max_area;
return 0;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
