A - Your First Judge Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

文字列 SS が与えられるので、この文字列が Hello,World! と完全に一致するなら AC 、そうでないなら WA と出力してください。

「完全に一致する」とは?文字列 AABB が完全に一致するとは、文字列 AABB の長さが等しく、かつ全ての 1iA1 \le i \le |A| を満たす整数 ii について AA の先頭から ii 文字目と BB の先頭から ii 文字目とが(英大文字か小文字かも含めて)一致することを指します。

制約

  • 1S151 \le |S| \le 15
  • SS は英大小文字, ,, ! のみからなる

入力

入力は以下の形式で標準入力から与えられる。

SS

出力

答えを出力せよ。


入力例 1Copy

Copy
Hello,World!

出力例 1Copy

Copy
AC

文字列 SSHello,World! と完全に一致します。


入力例 2Copy

Copy
Hello,world!

出力例 2Copy

Copy
WA

先頭から 77 文字目の W が、 Hello,World! では大文字ですが SS では小文字です。よって SSHello,World! と一致しません。


入力例 3Copy

Copy
Hello!World!

出力例 3Copy

Copy
WA

Score : 100100 points

Problem Statement

Given a string SS, print AC if it perfectly matches Hello,World!; otherwise, print WA.

What is a perfect match?Strings AA is said to perfectly match BB when the length of AA is equal to that of BB, and the ii-th character of AA is the same as the ii-th character of BB for every integer ii such that 1iA1 \le i \le |A|.

Constraints

  • 1S151 \le |S| \le 15
  • SS consists of English lowercase letters, English uppercase letters, ,, and !.

Input

Input is given from Standard Input in the following format:

SS

Output

Print the answer.


Sample Input 1Copy

Copy
Hello,World!

Sample Output 1Copy

Copy
AC

The string SS perfectly matches Hello,World!.


Sample Input 2Copy

Copy
Hello,world!

Sample Output 2Copy

Copy
WA

The seventh character from the beginning should be an uppercase W in Hello,World!, but SS has a lowercase w in that position. Thus, SS does not match Hello,World!.


Sample Input 3Copy

Copy
Hello!World!

Sample Output 3Copy

Copy
WA


2025-04-03 (Thu)
09:56:51 +00:00