[BOJ/백준] 6888 –

문제가 있는 링크

문제를 해결하다

“시장은 4년마다, 재무는 2년마다, 수석 프로그래머는 3년마다, 개 포수는 5년마다 교체됩니다”라는 문구가 있는 질문 중 (4, 2, 3, 5 )의 최소공배수(60)를 구하는 문제입니다.

올바른 응답 코드

C++

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <cmath>

using namespace std;

#define fast ios_base::sync_with_stdio(false); cin.tie(0), cout.tie(0)
#define ll long long

int main() {
    fast;
    int x, y;
    cin >> x >> y;
    for (int i = x; i <= y; i += 60) cout << "All positions change in year " << i << "\n";
}

파이썬

for i in range(int(input()), int(input()) + 1, 60) :
    print("All positions change in year", i)