BAEKJOON 알고리즘 6064번 카잉달력 파이썬 코드 https://www.acmicpc.net/problem/6064 코드 123456for _ in range(int(input())): M, N, x, y = map(int, input().split()); v = x while (v - y) % N != 0 and v M * N) or v)cs 코드설명 이 문제는 반례가 많은 문제이다. 처음에는 다음과 같이 M의 배수 중에서 만족하는 것만 찾았다. 12345for _ in range(int(input())): M,N,x,y=map(int,input().split());i=1 while ((M*i+x)-y)%N!=0 and M*iM*N) or M*i+x)cs 그랬더니 N이 더 작을 때 생기는 반례들..