0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AtCoderログ:0090 - ABC 215 A

Posted at

問題

問題文

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

制約

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

回答

回答1 (AC)

文字列を読み込んで、それが "Hello,World!" という文字列と等しければ AC, 等しくなければ WA を出力すれば良いでしょう。コードは以下のようになりました。

abc215a-1.cpp
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  string s;
  cin >> s;
  
  if ( s=="Hello,World!" ) {
    cout << "AC" << endl;
  } else {
    cout << "WA" << endl;
  }
}

調べたこと

AtCoder の解説公式解説

回答1と同じ方針でした。

AtCoder の解説ユーザ解説

COBOL による実装例が紹介されていますが、残念ながら COBOL は全くわかりませんでした。

リンク

前後の記事

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?