CF411A.Password Check

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have probably registered on Internet sites many times. And each time you should enter your invented password. Usually the registration form automatically checks the password's crypt resistance. If the user's password isn't complex enough, a message is displayed. Today your task is to implement such an automatic check.

Web-developers of the company Q assume that a password is complex enough, if it meets all of the following conditions:

  • the password length is at least 5 characters;
  • the password contains at least one large English letter;
  • the password contains at least one small English letter;
  • the password contains at least one digit.

You are given a password. Please implement the automatic check of its complexity for company Q.

输入格式

The first line contains a non-empty sequence of characters (at most 100100 characters). Each character is either a large English letter, or a small English letter, or a digit, or one of characters: "!", "?", ".", ",", "_".

输出格式

If the password is complex enough, print message "Correct" (without the quotes), otherwise print message "Too weak" (without the quotes).

输入输出样例

  • 输入#1

    abacaba
    

    输出#1

    Too weak
    
  • 输入#2

    X12345
    

    输出#2

    Too weak
    
  • 输入#3

    CONTEST_is_STARTED!!11
    

    输出#3

    Correct
    
首页