Dev.baelanche

[백준 2455] 지능형 기차 본문

Data Structure & Algorithm/PS - JAVA

[백준 2455] 지능형 기차

baelanche 2019. 5. 31. 16:15
반응형

 

 

문제에서 요구하는대로만 하면된다;;

 

 

public class Main {
    
    static int max = 0;
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int people = 0;
        for(int i=0; i<4; i++) {
            int a[] = {sc.nextInt(), sc.nextInt()};
            people = simulation(people, a[0], a[1]);
        }
        System.out.println(max);
    }
    
    public static int simulation(int people, int a, int b) {
        people -= a;
        people += b;
        max = max(max, people);
        return people;
    }
    
    public static int max(int a, int b) {
        return a > b ? a : b;
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 1049] 기타줄  (0) 2019.05.31
[백준 1946] 신입 사원  (0) 2019.05.31
[백준 10610] 30  (0) 2019.05.31
[백준 14502] 연구소  (0) 2019.05.29
[백준 1182] 부분수열의 합  (0) 2019.05.29
Comments