結果

問題 No.2954 Calculation of Exponentiation
ユーザー saisai
提出日時 2024-11-09 13:14:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 860 bytes
コンパイル時間 3,556 ms
コンパイル使用メモリ 248,208 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-09 13:15:04
合計ジャッジ時間 5,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 4 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 WA -
testcase_11 WA -
testcase_12 WA -
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 1 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 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 #

#include <bits/stdc++.h>
#include <atcoder/math>

void solve() {
  double A, B; std::cin >> A >> B;
  int a = A * 10000, b = B * 10000;
  if (a % 10000 != 0) {
    std::cout << "No\n";
  } else {
    int cnt2 = 4, cnt5 = 4;
    while (cnt2 && b % 2 == 0) {
      cnt2--;
      b /= 2;
    }
    while (cnt5 && b % 5 == 0) {
      cnt5--;
      b /= 5;
    }
    a /= 10000;
    int p = 1;
    for (;cnt2--;) {
      p *= 2;
    }
    for (;cnt5--;) {
      p *= 5;
    }
    for (int i = 1; atcoder::pow_mod(i, p, 1 << 30) <= a; i++) {
      if (atcoder::pow_mod(i, p, 1 << 30) == a) {
        std::cout << "Yes\n";
        return;
      }
    }
    std::cout << "No\n";
  }
}

int main() {
  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  int testcases = 1;

  // std::cin >> testcases;

  for (;testcases--;) {
    solve();
  }

  return 0;
}
0