Problem1730--密码强度判断

1730: 密码强度判断

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

判断密码强度,评估标准如下:
   (1)少于6位,弱密码
   (2)数字、小写字母、大写字母或('!@#¥*_')中的一种,弱密码
   (3)数字、小写字母、大写字母或('!@#¥*_')中的两种, 中度安全
  (4)数字、小写字母、大写字母或('!@#¥*_')中的三种, 强密码
  (5)包含上述指定字符之外的字符,非法密码
输入一个密码,判断这个密码的强度

Input

一串密码

Output

强密码/弱密码/中等密码/非法密码

Sample Input Copy

sygz123456

Sample Output Copy

中等密码

Source/Category