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
- 알고리즘
- gsap
- Algorithm
- 한빛아카데미
- Node.js
- 스크롤
- quizlet
- 이벤트
- 초연결 사회의 데이터통신과 네트워킹
- React
- html
- 백준
- 연습문제
- ArrayList
- 자바
- 라이브러리
- prettier-code formatter
- 초연결사회의 데이터통신과 네트워킹
- ScrollToPlugin
- 네트워킹
- reactjs code snippets
- java
- scrolly
- 자바스크립트
- JavaScript
- 단어장
- 데이터통신
- 함수
- 일본어
- JLPT
Archives
- Today
- Total
umilove98의 블로그
백준 1476 Java 자바 본문
반응형
E S M을 규칙에 맞게 증가시키며 년도를 함께 증가시킨다 입력값과 E S M이 같아지는 순간의 년도를 출력한다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Q1476 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int e = Integer.parseInt(st.nextToken());
int s = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
int year = 1;
int E = 1, S = 1, M = 1;
while(true) {
if(E == e && S == s && M == m) {
break;
}
if(E == 15) {
E = 1;
}else {
E++;
}
if(S == 28) {
S = 1;
}else {
S++;
}
if(M == 19) {
M = 1;
}else {
M++;
}
year++;
}
System.out.println(year);
}
}
|
cs |
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 1531 Java 자바 (0) | 2021.08.13 |
---|---|
백준 2010 Java 자바 (0) | 2021.08.13 |
백준 1475 Java 자바 (0) | 2021.08.11 |
백준 1439 Java 자바 (0) | 2021.08.10 |
백준 1864 Java 자바 (0) | 2021.08.10 |