-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
28-alstjr7437 #203
28-alstjr7437 #203
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์.. ์๋ณด๊ณ ์๊ฐ ์ด๊ณผ๋ฅผ ํด๊ฒฐํด ๋ณด๋ ค๊ณ ํ๋๋ฐ ์คํจํ๋ค์. ๋ฏผ์๋ ํ์ด๋ฅผ ์ฐธ๊ณ ํด์ ํ์์ต๋๋ค!
import java.io.BufferedReader
import java.io.BufferedWriter
import java.io.InputStreamReader
import java.io.OutputStreamWriter
private lateinit var br: BufferedReader
private lateinit var bw: BufferedWriter
fun main() {
br = BufferedReader(InputStreamReader(System.`in`))
bw = BufferedWriter(OutputStreamWriter(System.out))
val T = br.readLine().toInt()
repeat(T) {
val (m, n, x, y) = br.readLine().split(" ").map { it.toInt() }
bw.write(program(m, n, x, y).toString())
bw.newLine()
}
bw.flush()
bw.close()
}
private fun program(m: Int, n: Int, x: Int, y: Int): Int {
var number = x
while (true) {
if ((number - x) % m == 0 && (number - y) % n == 0) return number
number += m
if (number > m * n) return -1
}
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
๋ฌธ์ ๋ฅผ ๋ณด์๋ง์ ์ด์ฐจํผ M๊ณผ N์ ์ต์๊ณต๋ฐฐ์ ์ด์์ ํ์ํ ํ์๊ฐ ์๋ค๊ณ ์๊ฐ์ด ๋ค์ด์ ์ต์๊ณต๋ฐฐ์๋ฅผ ๊ตฌํ ๋ค,
M์ ๋ฐฐ์ + x ๊ฐ์ N์ ๋ฐฐ์ + y๊ฐ์ผ๋ก ๋ง๋ค ์ ์๋ ์ง ํ์ํด์ ํ์์ด์!
import math
import sys
def input(): return sys.stdin.readline().rstrip()
T = int(input())
for _ in range(T):
M, N, x, y = map(int, input().split())
gcd = math.gcd(M, N)
lcm = M*N//gcd
for can_number in range(x, lcm+1, M):
if (can_number-y)%N==0:
print(can_number)
break
else: print(-1)
ํ์ด์ฌ์์๋ math ๋ผ์ด๋ธ๋ฌ๋ฆฌ์์ ์ต๋๊ณต์ฝ์๋ฅผ ์ง์ํด์ฃผ๊ธฐ ๋๋ฌธ์ ์ฌ์ฉํ๋ฉด ๊ฐ๊ฟ์ ๋๋ฅ
์ด์ ์ด ์ต๋๊ณต์ฝ์๋ฅผ ์ด์ฉํด์ ๋ ์์ ๊ณฑ // ์ต๋๊ณต์ฝ์๋ฅผ ํ๋ฉด ์ต์๊ณต๋ฐฐ์๊ฐ ๋์์!
18487c9
to
e2eda50
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LCM ์ฌ์ฉํ๋ฉด ์๊ฐ์ด๊ณผ ํด๊ฒฐ ๊ฐ๋ฅํ ๊ฒ ๊ฐ์๋ฐ? ํด์ ํ๋ค๊ฐ ๊ฒฐ๊ตญ ํด๊ฒฐ ๋ชปํด์ PR์ ์ฐธ๊ณ ํ์ต๋๋น..
์ ์๋ก ๋ฌธ์ ์๊ตฐ์ฉ ์ค๊ตญ์ธ์ ๋๋จธ์ง ์ ๋ฆฌ๋ผ.. ํํ ์ฐธ๊ณ ํด์ ํ์์ต๋๋ค !!
์ ์๋ก ๋ ํ๋ฒ ๋ฌธ์ ์ญ ๋๋ฌ๋ด์ผ๊ฒ ๋ค์ ์๊ณ ๋ฆฌ์ฆ ๊ณต๋ถํ ๊ฑฐ +1 ์ ๋ฆฝํ๊ณ ๊ฐ๋๋ค!!
import sys
import math
def input() : return sys.stdin.readline().rstrip()
T = int(input())
arr = [list(map(int, input().split())) for _ in range(T)]
result = [-1] * T
# M N x y
for i in range(T):
M, N, x, y = arr[i]
m = 1
n = 1
tmp = 0
check = False
while x <= int(M*N/math.gcd(M,N)):
if (x - 1) % N + 1 == y:
result[i] = x
check = True
break
x += M
print(' '.join(map(str, result)))
๐ ๋ฌธ์ ๋งํฌ
์นด์ ๋ฌ๋ ฅ
โ๏ธ ์์๋ ์๊ฐ
30๋ถ
โจ ์๋ ์ฝ๋
0๋ถํฐ k๋ฒ์งธ์ ํด๋ฅผ ์ฐพ์ผ๋ ค๊ณ ํ๋ ค๊ณ ํ๋ฉด ๋ฑ๋ด๋ ์๊ฐ์ด๊ณผ๊ฐ ๋ ๊ฒ ๊ฐ์์
k๋ฅผ ์ฐพ๋ ์์ ์ฐพ์์ผ ๊ฒ ๋ค๊ณ ์๊ฐํ์ต๋๋ค.
๊ทธ๋์ ํน์ ์ ์๋ก ์ด ํ์ํ๋ค๊ณ ์๊ฐํ๋๋ฐ ๋ชป์ฐพ๊ฒ ์ด์ ์์๋ณธ ๋ถ๋ถ์ด
M๊ณผ N์ ์ต์ ๊ณต๋ฐฐ์ ์ฐพ๊ธฐ ์์ต๋๋ค!!
์ ๋ถ๋ถ์ ์ฐธ๊ณ ํ์ฌ ๋์จ ๋ถ๋ถ์ด ์๋ ์ฝ๋์ด๊ณ
๊ทธ๋ ๊ฒ ํด์ while ๋ฌธ์ m์ ๊ณ์ ๋ํด์ฃผ๋ฉด์ if ๋ฌธ์ผ๋ก ๋๊ฐ์ง ๋ค ๋ง์กฑํ๋ฉด break๋ก ํ์ถํ๊ฒ ์์ฑํ์ต๋๋ค.
๐ก ์
์์ ์์ ๋์ ํด๋ณด๋ฉด
k = 33์ธ ๊ฒฝ์ฐ, m,n,x,y -> 10, 12, 3, 9
(33 - 3) % 10 = 0
(33 - 9) % 12 = 0
์ด๋ฐ์์ผ๋ก ๊ตฌํ๊ฒ ๋ฉ๋๋ค!!!
๋ง์ฝ์ ์์ผ๋ฉด -1์ธ ์ด๊ธฐ๊ฐ์ผ๋ก ๋์ค๊ฒ ๋๊ณ !!!
๐ง ์ฝ๋
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ฌ์ค ์ฒ์์ ๋ฌธ์ ๊ฐ ์ด๋ค์์ธ์ง ์ดํด๋ฅผ ๋ชปํด์ ๊ฒ์์ ํด๋ณด๋๊น ์ด๋ ๊ฒ ํ๋ฉด ๋๊ตฌ๋!
ํ๊ณ ํ์ด์ ์กฐ๊ธ ์์ฌ์ ์ต๋๋ค.. ์ํ๋ฌธ์ ๋ ์ฐธ ์ด๋ ต๋ค๊ณ ๋๊ผ์ด์..
์ค๊ตญ์ธ์ ๋๋จธ์ง ์ ๋ฆฌ ๋ผ๋๊ฑธ ์์์ ํ๋ฒ ๋ค๋ฅธ ๋ฌธ์ ๋ ํ์ด๋ณผ๊น ์๊ฐ ์ค์ ๋๋ค!