문제 :
답 :
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int number = sc.nextInt(); int array[][]= new int[3][number]; int notad; int ad; int pay; for(int i=0;i<number; i++) { int r = sc.nextInt(); int e =sc.nextInt(); int c= sc.nextInt(); if(r>e-c) { System.out.println("do not advertise"); } else if(r==e-c) { System.out.println("does not matter"); } else { System.out.println("advertise"); } } } }
'코딩테스트(백준)' 카테고리의 다른 글
[백준] 1697 - 숨바꼭질 - JAVA - 사좋배 공유 (0) | 2020.02.21 |
---|---|
[백준] 2563번: 색종이 -JAVA - 사좋배 공유 (0) | 2019.09.25 |
[백준] 2798번: 블랙잭 -JAVA - 사좋배 공유 (0) | 2019.09.25 |
[백준] 1748번: 수 이어 쓰기 1 -JAVA - 사좋배 공유 (0) | 2019.09.25 |
[백준] 4948번: 베르트랑 공준 -JAVA - 사좋배 공유 (0) | 2019.09.24 |