250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(SWEA c++)7532. 세영이의 SEM력 연도 본문
728x90
반응형
#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
반응형
'SW Expert Academy' 카테고리의 다른 글
(SWEA c++)7732. 시간 개념 (0) | 2020.12.01 |
---|---|
(SWEA c++)7728. 다양성 측정 (0) | 2020.11.30 |
(SWEA c++)7510. 상원이의 연속 합 (0) | 2020.11.25 |
(SWEA c++)7272. 안경이 없어! (0) | 2020.11.24 |
(SWEA c++)7193. 승현이의 수학공부 (0) | 2020.11.24 |