[BaekJoon] 16430번 - 제리와 톰 [Java][C++]
[BaekJoon] 16430번 - 제리와 톰 [Java][C++]
1. 문제 풀이
톰이 가지고 있는 치즈의 무게는 $1 - \dfrac{A}{B} = \dfrac{B - A}{B}$ 이다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
System.out.println((B - A) + " " + B);
}
}
2. 풀이 [C++]
1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int a, b;
cin >> a >> b;
cout << b - a << ' ' << b;
}
This post is licensed under CC BY 4.0 by the author.