

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
文字列 が与えられるので、この文字列が Hello,World!
と完全に一致するなら AC
、そうでないなら WA
と出力してください。
「完全に一致する」とは?
文字列 と が完全に一致するとは、文字列 と の長さが等しく、かつ全ての を満たす整数 について の先頭から 文字目と の先頭から 文字目とが(英大文字か小文字かも含めて)一致することを指します。制約
- は英大小文字,
,
,!
のみからなる
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
Hello,World!
出力例 1Copy
AC
文字列 は Hello,World!
と完全に一致します。
入力例 2Copy
Hello,world!
出力例 2Copy
WA
先頭から 文字目の W
が、 Hello,World!
では大文字ですが では小文字です。よって は Hello,World!
と一致しません。
入力例 3Copy
Hello!World!
出力例 3Copy
WA
Score : points
Problem Statement
Given a string , print AC
if it perfectly matches Hello,World!
; otherwise, print WA
.
What is a perfect match?
Strings is said to perfectly match when the length of is equal to that of , and the -th character of is the same as the -th character of for every integer such that .Constraints
- consists of English lowercase letters, English uppercase letters,
,
, and!
.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
Hello,World!
Sample Output 1Copy
AC
The string perfectly matches Hello,World!
.
Sample Input 2Copy
Hello,world!
Sample Output 2Copy
WA
The seventh character from the beginning should be an uppercase W
in Hello,World!
, but has a lowercase w
in that position. Thus, does not match Hello,World!
.
Sample Input 3Copy
Hello!World!
Sample Output 3Copy
WA