728x90
이게 문제가?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner (System.in); int N = sc.nextInt(); for(int i=0; i<N; i++) { int r =sc.nextInt(); int e =sc.nextInt(); int c =sc.nextInt(); if(r>e-c) { System.out.println("do not advertise"); } if(r==e-c) { System.out.println("does not matter"); } if(r<e-c) { System.out.println("advertise"); } } } } |
'알고리즘 풀이 > 백준' 카테고리의 다른 글
[백준][Java] 2822번 점수 계산 (0) | 2018.05.18 |
---|---|
[백준][Java] 1937번 욕심쟁이 판다 (0) | 2018.05.18 |
[백준][Java] 14501번 퇴사 (0) | 2018.05.17 |
[백준][Java] 11650번 좌표 정렬하기 (0) | 2018.05.16 |
[백준][Java] 2884번 알람 시계 (0) | 2018.05.16 |