분류 전체보기25 [백준 / c++] 3009번: 네 번째 점 해답 https://www.acmicpc.net/problem/3009 -문제- -정답-#include using namespace std;int x[1001] = {0, };int y[1001] = {0, };int main() { int a, b; for(int i = 0; i > a >> b; x[a]++; y[b]++; } for(int i = 0; i 2024. 7. 30. [백준 / c++] 1085번: 직사각형에서 탈출 https://www.acmicpc.net/problem/1085 -문제- -정답- #include #include #include using namespace std;int main() { int x, y, w, h; cin >> x >> y >> w >> h; vector arr; arr.push_back(x - 0); arr.push_back(w - x); arr.push_back(y - 0); arr.push_back(h - y); sort(arr.begin(), arr.end()); cout 2024. 7. 29. [백준 / c++] 27323번: 직사각형 해답 https://www.acmicpc.net/problem/27323 -문제- -정답- #include using namespace std;int main() { int a, b; cin >> a >> b; cout 2024. 7. 29. [백준 / c++] 2501번: 약수 구하기 해답 https://www.acmicpc.net/problem/2501 -문제- -정답-#include #include using namespace std;vector arr;int main() { int n, k; cin >> n >> k; for (int i = 1; i 2024. 7. 24. 이전 1 2 3 4 ··· 7 다음 반응형