0%

AtCoder ABC 215 A

題目連結:AtCoder Beginner Contest 215: A - Your First Judge

題目敘述

給定一個字串 S,輸出 AC 若 S==”Hello,World!” 否則輸出 WA。

輸入說明

輸⼊一行字串

範例輸入 1

1
Hello,World!

範例輸出 1

1
AC

範例輸入 2

1
Hello,world!

範例輸出 2

1
WA

題解 :

直接判斷即可(s == “Hello,World!”)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<bits/stdc++.h>
using namespace std;

int main(){
ios::sync_with_stdio(0);cin.tie(0);

string ipt;
cin>>ipt;
if(ipt=="Hello,World!"){
cout<<"AC";
}else{
cout<<"WA";
}
}