250x250
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 | 31 |
Tags
- scrolly
- 이벤트
- 백준
- React
- JavaScript
- 스크롤
- 자바스크립트
- 일본어
- 알고리즘
- java
- Algorithm
- html
- 네트워킹
- 초연결사회의 데이터통신과 네트워킹
- reactjs code snippets
- 라이브러리
- 함수
- ScrollToPlugin
- 자바
- JLPT
- gsap
- Node.js
- 연습문제
- prettier-code formatter
- quizlet
- 한빛아카데미
- ArrayList
- 단어장
- 데이터통신
- 초연결 사회의 데이터통신과 네트워킹
Archives
- Today
- Total
umilove98의 블로그
백준 5532 Java 자바 본문
반응형
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
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Q5532 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int l = Integer.parseInt(br.readLine());
int a = Integer.parseInt(br.readLine());
int b = Integer.parseInt(br.readLine());
int c = Integer.parseInt(br.readLine());
int d = Integer.parseInt(br.readLine());
int korworkday = a/c;
int mathworkday = b/d;
if(a%c != 0 )
korworkday++;
if(b%d != 0)
mathworkday++;
int workday = Math.max(korworkday, mathworkday);
System.out.println(l-workday);
}
}
|
cs |
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 5543 Java 자바 (0) | 2021.09.04 |
---|---|
백준 2693 Java 자바 (0) | 2021.09.04 |
백준 4335 Java 자바 (0) | 2021.09.03 |
백준 3711 Java 자바 (0) | 2021.08.31 |
백준 2455 Java 자바 (0) | 2021.08.30 |