103770: [Atcoder]ABC377 A - Rearranging ABC

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:22 Solved:0

Description

Score : $100$ points

Problem Statement

You are given a string $S$ of length $3$ consisting of uppercase English letters.

Determine whether it is possible to rearrange the characters in $S$ to make it match the string ABC.

Constraints

  • $S$ is a string of length $3$ consisting of uppercase English letters.

Input

The input is given from Standard Input in the following format:

$S$

Output

Print Yes if it is possible to rearrange the characters in $S$ to make it match the string ABC, and No otherwise.


Sample Input 1

BAC

Sample Output 1

Yes

You can make $S$ match ABC by swapping the first and second characters of $S$.


Sample Input 2

AAC

Sample Output 2

No

You cannot make $S$ match ABC no matter how you rearrange the characters.


Sample Input 3

ABC

Sample Output 3

Yes

Sample Input 4

ARC

Sample Output 4

No

Output

得分:100分

问题陈述

给你一个由大写英文字母组成的长度为3的字符串$S$。

判断是否可以通过重新排列$S$中的字符使其与字符串ABC匹配。

约束条件

  • $S$是由大写英文字母组成的长度为3的字符串。

输入

输入从标准输入以下格式给出:

$S$

输出

如果可以通过重新排列$S$中的字符使其与字符串ABC匹配,则打印Yes,否则打印No


样本输入 1

BAC

样本输出 1

Yes

你可以通过交换$S$的第一个和第二个字符来使$S$与ABC匹配。


样本输入 2

AAC

样本输出 2

No

无论你如何重新排列字符,都无法使$S$与ABC匹配。


样本输入 3

ABC

样本输出 3

Yes

样本输入 4

ARC

样本输出 4

No

加入题单

上一题 下一题 算法标签: