일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 침해사고대응
- 파일해시생성
- crack
- ZIP
- ctf-d
- Interceptor
- 포렌식
- disk
- SW에듀서포터즈
- K-shield Jr 10기
- shadow
- 디스크
- 안티디버깅
- Reversing
- 리버싱핵심원리
- Frida
- 써니나타스
- upx
- Multimedia
- tar
- Mobile
- swing
- K-sheild Jr
- John the ripper
- CodeEngn
- 케쉴주
- Android
- Autoware
- 모바일프로그래밍
Archives
- Today
- Total
물먹는산세베리아
[BOJ] 1085번: 직사각형에서 탈출 본문
#include <iostream>
using namespace std;
int main() {
int x, y, w, h;
cin >> x >> y >> w >> h;
x = x > w-x ? w-x : x;
//cout << "x=" << x << endl;
y = y > h-y ? h-y : y;
//cout << "y=" << y << endl;
int answer = 0;
answer = x > y ? y : x;
cout << answer;
}
그냥 x, y, w-x, h-y 중에 최소 구함
'Algorithm > 백준' 카테고리의 다른 글
[BOJ] 4153번: 직사각형 C++ (0) | 2021.02.28 |
---|---|
[BOJ]1193번: 분수찾기 (0) | 2021.02.15 |
[BOJ] 2775번: 부녀회장이 될테야 (0) | 2021.02.14 |