문제 출처
https://www.acmicpc.net/problem/1476
접근 방식 및 풀이
- E,S,M 모두 특정값 이상이면 1로 나타낸다.
- 3개의 변수가 동시에 1이 되는 경우를 year에 1씩 더해가며 이 조건을 만족시키느 year값을 찾는다.
소스 코드
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
|
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int e=1, s=1, m=1;
int E = sc.nextInt();
int S = sc.nextInt();
int M = sc.nextInt();
for (int year=1; ; year++) {
if(e==E && s==S && m==M){
System.out.println(year);
break;
}
e += 1;
s += 1;
m += 1;
if(e==16){
e=1;
}
if(s==29){
s=1;
}
if(m==20){
m=1;
}
}
}
}
|
결과
'Competition > Baekjoon' 카테고리의 다른 글
[백준] 1107번 자바 리모컨 (0) | 2020.04.17 |
---|---|
[백준] 11399번 자바 ATM (0) | 2020.04.09 |
[백준] 10610번 자바 30 (0) | 2020.04.08 |