Recent Posts
Notice
No Rules Rules
날짜 계산 (feat. 백준, 1476번) 본문
728x90
반응형
날짜 계산
https://www.acmicpc.net/problem/1476
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int E, S, M, ans;
cin >> E >> S >> M;
ans = min(min(E, S), M);
while(1){
if((ans - E) % 15 == 0 && (ans - S) % 28 == 0 && (ans - M) % 19 == 0)
break;
++ans;
}
cout << ans;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
뒤집기 (feat. 백준, 1439번) (0) | 2022.11.23 |
---|---|
한다 안한다 (feat. 백준, 5789번) (0) | 2022.11.23 |
험난한 등굣길 (feat. 백준, 26009번) (0) | 2022.11.22 |
K-Queen (feat. 백준, 26006번) (0) | 2022.11.21 |
나뭇잎 학회 (feat. 백준, 26005번) (0) | 2022.11.21 |
Comments