Name the fallen human - 命名

Name the fallen human - 命名

题目背景

Long ago, two races ruled over Earth: humans and monsters.

One day, war break out between the two races.

After a long battle, the humans were victorious.

They sealed the monsters underground with a magic spell.

Many years later……

MT EBOTT 201X

Legends say that those who climb the mountain never return.

NAMED THE FALLEN HUMAN.

题目描述

给你一个字符串,判断它是否合法(可以作为人物的名称),合法输出Yes,不合法输出No

一个字符串合法当且仅当:

  1. 这个字符串的位数大于0且小于7。
  2. 这个字符串仅包括小写英文字母。
  3. 这个字符串不是gastersansundynealphysasgoreasrieltorielflowey

格式

输入仅一行,即一个字符串,以换行结尾,不包括空格。

输出仅一行,即一个字符串,YesNo

样例

输入#1

iee

输出#1

Yes

样例解释

这个名字是合法的。

输入#2

sans

输出#2

No

样例解释

这个名字是非法的,因为它是sans

输入#3

papyrus

输出#3

No

样例解释

这个名字是非法的,因为它超过了六个字符。

输入#4

Aname

输出#4

No

样例解释

这个名字是非法的,因为它有大写字母。

输入#5

frisk

输出#5

Yes

样例解释

虽然这个名字会开启困难模式,但是在这里算合法的。

信息

ID
1001
难度
9
分类
字符串 | 模拟 点击显示
标签
递交数
10
已通过
4
通过率
40%
上传者