[BOJ / C++] 1476 날짜 계산

Seulguo·2022년 7월 30일
0

Algorithm

목록 보기
155/185
post-thumbnail

🐣 문제

링크 : https://www.acmicpc.net/problem/1476


🐥 코드

/*
문제 : 날짜 계산
링크 : https://www.acmicpc.net/problem/1476
*/

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> v;
int main(){
    int E, S, M;
    cin >> E >> S >> M;
    
    int year = 1;
    while(1){
        if((year - E) % 15 == 0 && (year - S) % 28 == 0 && (year - M) % 19 == 0) break;
        else year++;
    }
    
    cout << year;
    
    return 0;
}

0개의 댓글