結果

問題 No.2954 Calculation of Exponentiation
ユーザー tnakao0123tnakao0123
提出日時 2024-11-11 17:44:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,298 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 59,712 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-11 17:44:40
合計ジャッジ時間 2,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 WA -
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2954.cc:  No.2954 Calculation of Exponentiation - yukicoder
 */

#include<cstdio>
#include<cmath>
#include<algorithm>
#include<utility>

using namespace std;

/* typedef */

using pii = pair<int,int>;

/* subroutines */

template <typename T>
T gcd(T m, T n) {  // m >= 0, n >= 0
  if (m < n) swap(m, n);
  while (n > 0) {
    T r = m % n;
    m = n;
    n = r;
  }
  return m;
}

pii readrat() {
  char s[32];
  scanf("%s", s);

  char *cpt = s;
  int sign = 1;
  if (*cpt == '-') sign = -1, cpt++;
  
  int p = 0, q = 0;
  while (*cpt >= '0' && *cpt <= '9') p = p * 10 + (*(cpt++) - '0');
  cpt++; // '.'
  while (*cpt >= '0' && *cpt <= '9') q = q * 10 + (*(cpt++) - '0');
  
  int n = p * 10000 + q, d = 10000;
  int g = gcd(n, d);
  n /= g, d /= g;

  return {n * sign, d};
}

/* main */

int main() {
  auto [an, ad] = readrat();
  auto [bn, bd] = readrat();

  if (bn < 0) {
    swap(an, ad);
    bn = -bn;
  }
  //printf(" a=%d/%d, b=%d/%d\n", an, ad, bn, bd);

  if (ad == 1) {
    if (bd == 1) { puts("Yes"); return 0; }
    
    int x0 = 1, x1 = an + 1;
    while (x0 + 1 < x1) {
      int x = (x0 + x1) / 2;
      if (pow(x, bd) > an) x1 = x;
      else x0 = x;
    }

    if (pow(x0, bd) == an) { puts("Yes"); return 0; }
  }

  puts("No");
  return 0;
}
0