문제 링크입니다: www.acmicpc.net/problem/19698
19698번: 헛간 청약
$1 \le N, W, H, L \le 1,000$
www.acmicpc.net
간단한 구현 문제였습니다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <algorithm> | |
using namespace std; | |
int main(void) | |
{ | |
ios_base::sync_with_stdio(0); | |
cin.tie(0); | |
int N, W, H, L; | |
cin >> N >> W >> H >> L; | |
int result = min((W / L) * (H / L), N); | |
cout << result << "\n"; | |
return 0; | |
} |


개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 5103번 DVDs (0) | 2021.03.28 |
---|---|
백준 5102번 Sarah's Toys (0) | 2021.03.28 |
백준 19602번 Dog Treats (0) | 2021.03.27 |
백준 18414번 X に最も近い値 (0) | 2021.03.27 |
백준 18411번 試験 (0) | 2021.03.27 |