結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 WA -
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 WA -
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,824 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 2 ms
6,820 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() {
  int p, q;
  scanf("%d.%d", &p, &q);
  int n = abs(p) * 10000 + q, d = 10000;
  if (p < 0) n = -n;

  int g = gcd(abs(n), d);
  n /= g, d /= g;
  return {n, 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