Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- database
- bit manipulation
- Tree
- Binary Tree
- string
- simulation
- Binary Search
- 코테
- two pointers
- 코딩테스트
- 구현
- geometry
- java
- Data Structure
- greedy
- Class
- 자바
- SQL
- sorting
- Matrix
- Stack
- Counting
- array
- Method
- implement
- dynamic programming
- 파이썬
- Math
- hash table
- Number Theory
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 19532. 수학은 비대면강의입니다 본문
1. 입력
- 정수 a,b,c,d,e,f가 공백으로 구분되어 차례대로 주어진다. (-999 <= a,b,c,d,e,f <=999)
- 문제에서 언급한 방정식을 만족하는 (x,y)가 유일하게 존재하고, 이 때 x,y는 각 -999 이상 999 이하의 정수인 경우만 입력으로 주어짐이 보장된다.
2. 출력
- 문제의 답인 x와 y를 공백으로 구분해 출력한다.
3. 코드
import java.util.*;
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer token = new StringTokenizer(br.readLine());
int[] a = new int[6];
for(int i=0 ; i<6 ; i++)
a[i] = Integer.valueOf(token.nextToken());
for(int x=-999 ; x<=999 ; x++)
for(int y=-999 ; y<=999 ; y++)
if(a[0]*x+a[1]*y==a[2] && a[3]*x+a[4]*y==a[5]){
bw.write(x + " " + y);
break;
}
bw.flush();
bw.close();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 11478. 서로 다른 부분 문자열의 개수 (0) | 2023.05.02 |
---|---|
[백준 온라인 저지] 1436. 영화감독 숌 (0) | 2023.05.02 |
[백준 온라인 저지] 2231. 분해합 (0) | 2023.05.02 |
[LeetCode/Easy] 2379. Minimum Recolors to Get K Consecutive Black Blocks (0) | 2023.05.02 |
[LeetCode/Easy] 2373. Largest Local Values in a Matrix (0) | 2023.05.02 |