Home » Compete » SnackDown 2021 - Online Qualifiers
Lucky Number Problem Code: LUCKYNUM
Chef buys a lottery ticket that has a digit code associated with it. He thinks that digit is his lucky digit and brings him good luck. Chef will win some amount in the lottery if at least one of the digits of the lottery ticket is .
Given three digits , , and of the lottery ticket, tell whether Chef wins something or not?
Input Format
- First line will contain , the number of test cases. Then the test cases follow.
- Each test case contains a single line of input, three space separated integers .
Output Format
For each testcase, output in a single line answer "YES"
if Chef wins a positive amount with the lottery and "NO"
if not.
You may print each character of the string in uppercase or lowercase (for example, the strings "yEs", "yes", "Yes" and "YES" will all be treated as identical).
Constraints
Sample Input 1
3
0 0 0
7 8 9
2 7 7
Sample Output 1
NO
YES
YES
Explanation
Test Case : Since no digit is equal to , Chef fails to win any amount in the lottery.
Test Case : Since the first digit is equal to , Chef will win some amount in the lottery.
Test Case : Since the second and third digit is equal to , Chef will win some amount in the lottery.
Solution
Test Match Series Problem Code: TESTSERIES
A match test series between India and England has just concluded.
Every match could have ended either as a win for India, a win for England, or a draw. You know the result of all the matches. Determine who won the series or if it ended in a draw.
A team is said to have won the series if it wins strictly more test matches than the other team.
Input Format
- First-line will contain , the number of test cases. Then the test cases follow.
- Each test case contains a single line of input, five space-separated integers denoting the results of all the five matches. denotes that the test match ends in a draw. denotes that the test match is won by India. denotes that the test match is won by England.
Output Format
For each test output "DRAW"
if the series ends in a draw, "INDIA"
if the series is won by India, and "ENGLAND"
if the series is won by England.
You may print each character of the string in uppercase or lowercase (for example, the strings "dRaw", "draw", "Draw" and "DRAW" will all be treated as identical).
Constraints
Sample Input 1
3
0 1 2 1 0
0 1 2 1 2
2 2 2 2 1
Sample Output 1
INDIA
DRAW
ENGLAND
Explanation
Test Case : India wins matches while England won match so India wins the series.
Test Case : Both teams win matches so the series ends in a draw.
Test Case : England won matches while India won match so England wins the series.