#ABC104B. AcCepted

AcCepted

题目描述

You are given a string SS. Each character of SS is uppercase or lowercase English letter. Determine if SS satisfies all of the following conditions:

  • The initial character of SS is an uppercase A.
  • There is exactly one occurrence of C between the third character from the beginning and the second to last character (inclusive).
  • All letters except the A and C mentioned above are lowercase.

给你一个字符串 SSSS 中的每个字符都是大写或小写英文字母。请判断 SS 是否满足以下所有条件:

  • SS 的首字符是大写字母 A
  • 从开头的第三个字符到倒数第二个字符(包括倒数第二个字符)之间正好出现一个 C
  • 除上述AC外,所有字母均为小写。

输入格式

输入内容按以下格式标准输入:

SS

输出格式

如果 SS 满足问题陈述中的所有条件,则打印 AC;否则,打印 WA

样例 #1

样例输入 #1

AtCoder

样例输出 #1

AC

样例 #2

样例输入 #2

ACoder

样例输出 #2

WA

样例 #3

样例输入 #3

AcycliC

样例输出 #3

WA

样例 #4

样例输入 #4

AtCoCo

样例输出 #4

WA

样例 #5

样例输入 #5

Atcoder

样例输出 #5

WA

说明

数据规模与约定

  • 4S104 ≤ |S| ≤ 10 (S|S| is the length of the string SS.)
  • Each character of SS is uppercase or lowercase English letter.

样例 11 解释

第一个字母是 "A",第三个字母是 "C",其余字母均为小写,因此满足所有条件。

样例 22 解释

第二个字母不应是 C

样例 33 解释

最后一个字母也不应该是 C

样例 44 解释

不应有两个或两个以上的 C 出现。

样例 55 解释

C "的数量也不应为零。