Algorithm/백준 알고리즘

백준_1476 날짜 계산(자바) / 구현

미스터로즈 2021. 9. 14. 10:10

시간&메모리 제한

 

문제

 

입력&출력

 

문제풀이

package com.Back;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class Back_1476 {

	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());
		
		for (int i = 1; i <= 8512; i++) {
			if((i-E)%15==0 && (i-S)%28==0 && (i-M)%19==0) {
				System.out.println(i);
				break;
			}
		}
	}
}

 

※ 내 생각

이 문제는 구현 문제입니다.
수학적 원리만 조금 알고 있으면 쉽게 해결할 수 있는 문제입니다.