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ログ:0111 - ABC 218 A

Last updated at Posted at 2021-09-13

問題

問題文

明日からの $7$ 日間の天気予報を表す文字列 $S$ が与えられます。
$i$ 日後の予報は $S$ の $i$ 文字目が o であるとき晴れ、x であるとき雨です。
$N$ 日後の天気予報が晴れかどうかを教えてください。

制約

・$N$ は $1$ 以上 $7$ 以下の整数
・$S$ は長さ $7$ の文字列であり、o と x のみからなる

回答

回答1 (AC)

文字列の $N$ 文字目が o か x かを判定する問題です。文字列の長さは $7$ 文字に固定されているので、悩むところはないと思います。コードは以下のようになりました。

abc218a-1.cpp
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  int n;
  string s;
  cin >> n >> s;

  if ( s.at(n-1)=='o' ) {
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }
}

調べたこと

AtCoder の解説公式解説

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

リンク

前後の記事

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?