Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 해시
- StringTokenizer
- 단국대학교 k-mooc
- 반정규화
- 자바스크립트
- 컴파일시스템
- 자바입력받기
- 블록체인 강의
- Node
- html 태그
- 시스템프로그래밍
- biginteger사용법
- select
- 혁신의기술2:신뢰의미래 블록체인을 만나다
- StringBuilder
- stringreader
- K-MOOC 단국대학교 홍보단
- Entity
- 블록체인
- attribute
- 티스토리챌린지
- CSS 기초
- 블록체인강의
- 우선순위큐
- 오블완
- 2차원배열정렬
- national instruments
- html기초
- K-MOOC
- 자바문자열구분
Archives
- Today
- Total
열정 실천
백준 5532 - 방학숙제 [JAVA] 본문
728x90
import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main (String[] args) throws IOException
{
Scanner sc = new Scanner(System.in);
int l = Integer.parseInt(sc.nextLine());
int a = Integer.parseInt(sc.nextLine());
int b = Integer.parseInt(sc.nextLine());
int c = Integer.parseInt(sc.nextLine());
int d = Integer.parseInt(sc.nextLine());
int max = 0;
if(a%c==0){
max = a/c;
}else{
max = a/c+1;
}
if(max<b/d+1){
if(b%d==0){
max = b/d;
}else{
max = b/d+1;
}
}
System.out.println(l-max);
}
}
현재 브론즈 5여서 브론즈 4문제 풀고 있었는데 브론즈 3문제로 넘어가도 문제없을 것 같다!!!
여름방학에 하루 두 문제 풀기 미션 끝까지 파이팅하쟈!!
728x90
'개발 공부 > 코딩 문제풀이' 카테고리의 다른 글
백준 - 1247 부호 [JAVA] (BigInteger사용) (0) | 2022.07.06 |
---|---|
[백준오류해결]error: class baekjoon_1085 is public, should be declared in a file named baekjoon_1085.java (0) | 2022.06.29 |
백준 1085- 직사각형에서 탈출! [JAVA] (0) | 2022.06.29 |
백준 1264 - 모음의 개수 [JAVA] [arraylist 사용법] (0) | 2022.06.29 |
백준 2845 - 파티가 끝나고 난 뒤 [JAVA] [BufferedReader 사용법] (0) | 2022.06.29 |