1186A - Vus the Cossack and a Contest

 

 문제

 콘테스트에 참가하는 n명의 사람 모두에게 펜과 노트를 주려고 한다.

 총 m개의 펜과 k개의 노트가 있는데 참가자 전원에게 상품을 줄수 있으면 YES, 없으면 NO를 출력하라.

 

 해석

 m 혹은 k가 n 보다 작으면 NO


 INPUT 정수 n, m, k (1 ≤ n, m, k ≤ 100)

 OUTPUT YES or NO

 

 

 

 

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
/**
 * Vus the Cossack and a Contest
 * 
 * @author codenbike
 * @date 2019.12.12
 */
 
import java.util.*;
 
public class Contest {
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        
        
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        
        if(n > m || n > k) {
            System.out.println("NO");
        } else {
            System.out.println("YES");
        }
    }
}
 

 

 

 

 

 respectively 각자, 각각

 

+ Recent posts