728x90
https://www.acmicpc.net/problem/1476
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main() {
int e, s, m;
cin >> e >> s >> m;
int a, b, c;
a = b = c = 1;
int cnt = 1;
while (true) {
if (e == a && s == b && m == c) {
break;
}
a = (a + 1) % 16;
b = (b + 1) % 29;
c = (c + 1) % 20;
if (a == 0)
a = 1;
if (b == 0)
b = 1;
if (c == 0)
c = 1;
cnt++;
}
cout << cnt;
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 13458번 시험 감독 (0) | 2020.03.25 |
---|---|
[백준] 2010번 플러그 (0) | 2020.03.23 |
[백준] 1357번 뒤집힌 덧셈 (0) | 2020.03.23 |
[백준] 1074번 Z (0) | 2020.03.23 |
[백준] 11066번 파일 합치기 (0) | 2020.03.20 |