Skip to content

Instantly share code, notes, and snippets.

@takageymt
Created October 29, 2016 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takageymt/8cabbc695fce0f78fd5722150ed508bf to your computer and use it in GitHub Desktop.
Save takageymt/8cabbc695fce0f78fd5722150ed508bf to your computer and use it in GitHub Desktop.
WAのコード
int main()
{
string s; cin >> s;
if(s.find("C") != string::npos && s.find("F") != string::npos && s.find("C") < s.find("F")) cout << "Yes" << endl;
else cout << "No" << endl;
return 0;
}
@takageymt
Copy link
Author

commit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment