https://www.acmicpc.net/problem/25591
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 x = Integer.parseInt(st.nextToken());
int y = Integer.parseInt(st.nextToken());
int a = 100 - x;
int b = 100 - y;
int c = 100 - (a + b);
int d = a * b;
int q = 0;
int r;
int frontNum;
int backNum;
if (d >= 100) {
q = d / 100;
r = d % 100;
frontNum = c + q;
backNum = r;
} else {
frontNum = c;
backNum = d;
r = d;
}
System.out.printf("%d %d %d %d %d %d\n", a, b, c, d, q, r);
System.out.printf("%d %d", frontNum, backNum);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 25628 햄버거 만들기 (0) | 2022.12.10 |
---|---|
백준 25377 빵 (0) | 2022.12.10 |
백준 25625 샤틀버스 (0) | 2022.12.09 |
백준 25640 MBTI (0) | 2022.12.09 |
백준 10984 내 학점을 구해줘 (1) | 2022.12.09 |