1154A - Restoring Three Numbers

 

 문제

 a, b, c 정수의 덧셈 조합으로 임의의 순서로 작성된 정수 4개(a+b, a+c, b+c, a+b+c)를 입력받아 a, b, c 정수를 유추하라.


 INPUT 양의 정수 x1, x2, x3, x4 (2 ≤ xi ≤ 10^9)

 OUTPUT 양의 정수 a, b, c

 

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
import java.util.*;
 
public class Numbers {
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        
        int[] num = new int[4];
        
        for(int i=0; i<4; i++){
            num[i]=sc.nextInt();
        }
        
        Arrays.sort(num);
        
        int sum = num[3];
        
        System.out.print(sum-num[0]+" ");
        System.out.print(sum-num[1]+" ");
        System.out.print(sum-num[2]);
        
    }
}
 

 

 

 

 

 restore 회복시키다, 복원하다

 arbitrary 임의적인, 제멋대로인

 pairwise 쌍으로, 짝으로

 

+ Recent posts