Type the Question

Friday, February 15, 2019

Question Name:Searching 3

#include <stdio.h>

int main()
{
int num,y=0,m,n,l;
scanf("%d", &num);
while(y<num)
{
m=1;
scanf("%d",&n);
if(n%21==0)
printf("The streak is broken!\n");
else
{
while(n!=0)
{
l=n%10;
n=n/10;
if(l==m)
{
m++;
if(m==3)
break;
}
else if(l==1)
continue;
else
m=1;
}
if(m==3)
printf("The streak is broken!\n");
else
printf("The streak lives still in our heart!\n");
}
y++;
}
return 0;
}

 

Problem Description

The grandest stage of all, Wrestlemania XXX recently happened. And with it, happened one of the biggest heartbreaks for the WWE fans around the world. The Undertaker’s undefeated streak was finally over.
Now as an Undertaker fan, you’re disappointed, disheartened and shattered to pieces. And Little Jhool doesn’t want to upset you in any way possible. (After all you are his only friend, true friend!) Little Jhool knows that you’re still sensitive to the loss, so he decides to help you out.
Every time you come across a number, Little Jhool carefully manipulates it. He doesn’t want you to face numbers which have “21” as a part of them. Or, in the worst case possible, are divisible by 21.
If you end up facing such a number you feel sad… and no one wants that – because you start chanting “The streak is broken!” , if the number doesn’t make you feel sad, you say, “The streak lives still in our heart!”
Help Little Jhool so that he can help you!
Input Format:
The first line contains a number, t, denoting the number of test cases.
After that, for t lines there is one number in every line.
Output Format:
Print the required string, depending on how the number will make you feel.

  • Test Case 1
    Input (stdin)
    3
    120
    121
    231
    Expected Output

    The streak lives still in our heart!
    The streak is broken!
    The streak is broken!
  • Test Case 2
    Input (stdin)
    4
    69521
    7484
    78175
    86424
    Expected Output
    The streak is broken!
    The streak lives still in our heart!
    The streak lives still in our heart!
    The streak lives still in our heart!

2 comments:

  1. the streak is broken
    The streak live still in our heart!
    the sreak 78175!!!..........

    ReplyDelete

Question Name:TOWER OF HANOI

#include < bits / stdc ++. h > #define lli long long using namespace std ; lli dp [ 202 ]; int main () { int t , n ; ...