728x90
문제
코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
private static StringBuilder sb;
private static BufferedReader br;
private static StringTokenizer st;
private static int a,b,c,d,e,f;
private static int x=0,y=0;
//입력
public static void input() throws Exception {
br = new BufferedReader(new InputStreamReader(System.in));
sb = new StringBuilder();
st = new StringTokenizer(br.readLine());
a = Integer.parseInt(st.nextToken());
b = Integer.parseInt(st.nextToken());
c = Integer.parseInt(st.nextToken());
d = Integer.parseInt(st.nextToken());
e = Integer.parseInt(st.nextToken());
f = Integer.parseInt(st.nextToken());
}
//실행
public static void process() {
for(int i = -999; i <= 999 ; i++){
for(int j = -999; j <= 999 ; j++){
if(i*a + j*b == c && i*d + j*e == f){
System.out.println(i+" "+j);
break;
}
}
}
}
public static void main(String[] args) throws Exception {
input();
process();
}
}
'코딩테스트 > 백준' 카테고리의 다른 글
[Java] 백준 2563번 : 색종이 (0) | 2024.04.14 |
---|---|
[Java] 백준 15593번 : Lifeguards (Bronze) (0) | 2024.04.14 |
[Java] 백준 1145번 : 적어도 대부분의 배수 (0) | 2024.04.14 |
[Java] 백준 14697번 : 방 배정하기 (0) | 2024.04.14 |
[Java] 백준 1436번 : 영화감독 숌 (0) | 2024.04.13 |