Algorithm


problem Link  :  https://www.codechef.com/problems/AUDIBLE  

Problem

Chef's dog binary hears frequencies starting from 67 Hertz to 45000 Hertz (both inclusive).

If Chef's commands have a frequency of  Hertz, find whether binary can hear them or not.

Input Format

  • The first line of input will contain a single integer , denoting the number of test cases.
  • Each test case consists of a single integer  - the frequency of Chef's commands in Hertz.

Output Format

For each test case, output on a new line YES, if binary can hear Chef's commands. Otherwise, print NO.

The output is case-insensitive. Thus, the strings YESyesyeS, and Yes are all considered the same.

Constraints

  • 1≤�≤104
  • 1≤�≤106

Sample 1:

Input
 
Output
 
5
42
67
402
45000
45005
NO
YES
YES
YES
NO

Explanation:

Test case 1: Chef's command has a frequency of 42 Hertz which is less than 67. Thus, it would not be audible to binary.

Test case 2: Chef's command has a frequency of 67 Hertz which lies in the range [67,45000]. Thus, it would be audible to binary.

Test case 3: Chef's command has a frequency of 402 Hertz which lies in the range [67,45000]. Thus, it would be audible to binary.

Test case 4: Chef's command has a frequency of 45000 Hertz which lies in the range [67,45000]. Thus, it would be audible to binary.

Test case 5: Chef's command has a frequency of 45005 Hertz which is greater than 45000. Thus, it would not be audible to binary.

Code Examples

#1 Code Example with C Programming

Code - C Programming

#include<stdio.h>

int main(void) {
	int t,hz;
	scanf("%d",&t);
	while(t--)
    {
        scanf("%d",&hz);
        if(hz>=67 && hz<=45000) printf("YES\n");
        else printf("NO\n">;
    }
	return 0;
} 
Copy The Code & Try With Live Editor

Input

x
+
cmd
5
42
67
402
45000
45005

Output

x
+
cmd
NO
YES
YES
YES
NO
Advertisements

Demonstration


CodeChef solution AUDIBLE  - Audible Range solution Codechef solution in C,C++

Previous
CodeChef solution AUDIBLE - Audible Range CodeChef solution in C,C++
Next
CodeChef solution TALLER - Who is taller! CodeChef solution in C,C++