퇴근 이후 약속까지 두시간정도 비어서 그동안 챌린지 완수하려고 노트북까지 챙겨서 출근했다. 동료 보고있나
Basic Aggregate Functions | 620. Not Boring Movies
select *
from Cinema
where id%2 = 1
and description != "boring"
order by rating desc;
Sorting and Grouping | 2356. Number of Unique Subjects Taught by Each Teacher
select teacher_id, count(distinct subject_id) cnt
from Teacher
group by teacher_id
Select | 595. Big Countries
select name, population, area
from World
where area >= 3000000
or population >= 25000000
쉬운 문제라고,, 냅다 예시만 보고 풀어서 꼬이지 않기,,, 쉬워보여도 문제 꼼꼼히 읽기,, ✍🏻
1085. 직사각형에서 탈출 https://www.acmicpc.net/problem/1085
브론즈3 | 수학, 기하학
import java.util.Scanner;
/**
* 1085. 직사각형에서 탈출
*/
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int y = sc.nextInt();
int w = sc.nextInt();
int h = sc.nextInt();
System.out.println(Math.min(Math.min(w-x, x), Math.min(h-y, y)));
}
}
약속까지 시간이 많이 안남은 관계로 브론즈3 레벨순에서 가장 쉬운 문제 선택
[1일1커밋 4D] LeetCode SQL & 백준 JAVA 11723, 9655 (비트 뭐시기와 DP) (2) | 2024.09.06 |
---|---|
[1일1커밋 3D] LeetCode SQL & 백준 JAVA 23971, 5073, 2292, 7562 (수학.. 그래프 순회) (2) | 2024.09.04 |
[1일 1커밋 1D] LeetCode SQL & SWEA S/W 문제해결 기본 3일차 끝 (0) | 2024.09.03 |
[SWEA] S/W 문제해결 기본 1일차 ~ 2일차 | JAVA (0) | 2024.08.25 |
[BAEKJOON] 유형별 문제풀이(1) | 그래프 DFS & BFS | JAVA (0) | 2024.08.25 |
댓글 영역