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ログ:0093 - ABC 086 B

Last updated at Posted at 2021-08-26

問題

問題文

シカのAtCoDeerくんは二つの正整数 $a,b$ を見つけました。$a$ と $b$ をこの順につなげて読んだものが平方数かどうか判定してください。

制約

・$1 \le a,b \le 100$
・$a,b$ は整数

収録されている問題セット

回答

回答1 (AC)

「$a$ と $b$ をこの順につなげて読んだもの」を作るには $a$ と $b$ を文字列として読み込んで a+b を処理すれば良いでしょう。コードは以下のようになりました。

abc086b-1.cpp
#include <bits/stdc++.h>
using namespace std;

int main() {
  string a, b;
  cin >> a >> b;

  int n = stoi(a+b);
  if ( pow(int(sqrt(n)),2)==n ) {
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }    
}

調べたこと

AtCoder の解説コンテスト全体の解説

平方数かを判定するのに、全数検索 (1x1 から 1000x1000 まで比べていく) が紹介されていました。

リンク

前後の記事

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?