Hi, There!
안녕하세요, 바오밥입니다.
목차
- 문제
- 풀이
문제
문제 내용
https://www.acmicpc.net/problem/19532
풀이
나의 풀이
- 브루트포스로 풀이하였다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main{
public static void main(String []args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(reader.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int c = Integer.parseInt(st.nextToken());
int d = Integer.parseInt(st.nextToken());
int e = Integer.parseInt(st.nextToken());
int f = Integer.parseInt(st.nextToken());
for(int x=-10000; x<=10000; x++) {
for(int y=-10000; y<=10000; y++) {
if((a*x + b*y == c) && (d*x + e*y == f)) {
System.out.printf("%d %d", x, y);
}
}
}
}
}
'Dev > PS' 카테고리의 다른 글
[백준-완전탐색] 1090 체커 (0) | 2023.09.29 |
---|---|
[백준-완전탐색] 2503 숫자야구 (0) | 2023.09.26 |
[백준-완전탐색] 14568 2017 연세대학교 프로그래밍 경시대회 (사탕) (0) | 2023.09.23 |
[백준-완전탐색] 1816 암호 키 (0) | 2023.09.23 |
[프로그래머스-코딩테스트 입문] 다음에 올 숫자 (0) | 2023.09.22 |