728x90
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int res=0; int max=0; for(int i=0;i<4;i++) { int a=sc.nextInt(); int b=sc.nextInt(); res += (b-a) ; if(max<res) max=res; } System.out.println(max); } } |
'알고리즘 풀이 > 백준' 카테고리의 다른 글
[백준][Java] 5565번 영수증 (0) | 2018.05.10 |
---|---|
[백준][Java] 1022번 소용돌이 예쁘게 출력하기 (0) | 2018.05.10 |
[백준][Java] 10797번 10부제 (0) | 2018.05.10 |
[백준][Java] 1934번 최소공배수 (0) | 2018.05.10 |
[백준][Java] 10828번 스택 (0) | 2018.05.06 |