N

(SWEA c++)7532. 세영이의 SEM력 연도 본문

SW Expert Academy

(SWEA c++)7532. 세영이의 SEM력 연도

naeunchan 2020. 11. 25. 16:15
728x90
반응형

swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWooplJ60l8DFARx&categoryId=AWooplJ60l8DFARx&categoryType=CODE

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

#include <iostream>
#include <cmath>

using namespace std;

int main(void)
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    
    int t;
    cin >> t;
    
    for(int tc = 1; tc <= t; tc++)
    {
        int S, E, M, s = 0;
        int year = 1;
        
        cin >> S >> E >> M;
        s = S;
        
        while(1)
        {
         	if((s - E) % 24 == 0 && (s - M) % 29 == 0)
                break;
            s += 365;
        }
        
        cout << "#" << tc << " " << s << endl;
    }
    return 0;
}
728x90
반응형