Codeforces 538 A. Cutting Banner

Source: Internet
Author: User

Codeforces 538 A. Cutting Banner

 

A. Cutting Banner time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output

A large banner with word CODEFORCES was ordered for the 1000-th onsite round of Codeforces ω that takes place on the Miami beach. unfortunately, the company that made the banner mixed up two orders and delivered somebody else's banner that contains someone else's word. the word on the banner consists only of upper-case English letters.

There is very little time to correct the mistake. all that we can manage to do is to cut out some substring from the banner, I. e. several consecutive letters. after that all the resulting parts of the banner will be glued into a single piece (if the beginning or the end of the original banner was cut out, only one part remains ); it is not allowed change the relative order of parts of the banner (I. e. after a substring is cut, several first and last letters are left, it is allowed only to glue the last letters to the right of the first letters ). thus, for example, for example, you can cut a substring out from string 'template' and get string 'temple' (if you cut out string ), 'plate '(if you cut outTEM), 't' (if you cut out EMPLATE), etc.

Help the organizers of the round determine whether it is possible to cut out of the banner some substring in such a way that the remaining parts formed word CODEFORCES.

Input

The single line of the input contains the word written on the banner. the word only consists of upper-case English letters. the word is non-empty and its length doesn't exceed 100 characters. it is guaranteed that the word isn' t word CODEFORCES.

Output

Print 'yes', if there exists a way to cut out the substring, and 'no' otherwise (without the quotes ).

Sample test (s) input
CODEWAITFORITFORCES
Output
YES
Input
BOTTOMCODER
Output
NO
Input
DECODEFORCES
Output
YES
Input
DOGEFORCES
Output
NO


 

 

For a string, check whether the remaining part after splitting is equal to "CODEFORCES". If YES is output, NO is output. Common string processing problems. Use the substr () function.

 

The Code is as follows:

 

# Include
 
  
# Include
  
   
# Include
   
    
# Include
    
     
Using namespace std; int main () {int n, p = 0; string a; cin> a; n = a. length (); for (int I = 0; I
     
      

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.