Advertisement
bojandam1

Lucky numbers

Apr 19th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.08 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. //#include "..\Stack.h"
  3.  
  4. using namespace std;
  5.  
  6.  
  7.  
  8. int main()
  9. {
  10.     int n;cin>>n;
  11.     string a;cin>>a;
  12.     string a2=a,a3=a,a5=a,a7=a;
  13.  
  14.  
  15.         bool coolnes=false;
  16.         for(int i=0;i<n;i++)
  17.         {
  18.  
  19.             if(a[i]=='?')
  20.             {
  21.                 a2[i]='2';
  22.                 a3[i]='3';
  23.                 a7[i]='7';
  24.                 a5[i]='5';
  25.             }
  26.  
  27.         }
  28.         int sed=0,pet=0,tri=0;
  29.         for(int i=0;i<n;i++)
  30.         {
  31.             if((i>0&&a2[i]=='2'&&a2[i-1]=='2')||(i<n-1&&a2[i]=='2'&&a2[i+1]=='2')){cout<<"cool"; return 0;}
  32.             if(a7[i]=='7')
  33.             {
  34.                 sed++;
  35.             }
  36.             else sed=0;
  37.             if(a5[i]=='5')
  38.             {
  39.                 pet++;
  40.             }
  41.             else pet=0;
  42.             if(a3[i]=='3')
  43.             {
  44.                 tri++;
  45.             }
  46.             else tri=0;
  47.  
  48.             if(tri>=3||sed>=7||pet>=5){
  49.                     cout<<"cool";return 0;}
  50.         }
  51.         cout<<"boring";
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.     return 0;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement