結果

問題 No.2954 Calculation of Exponentiation
ユーザー Today03Today03
提出日時 2024-11-08 21:41:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 838 bytes
コンパイル時間 2,763 ms
コンパイル使用メモリ 253,344 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 21:42:03
合計ジャッジ時間 3,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 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 2 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 2 ms
5,248 KB
testcase_25 AC 2 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>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    string A, B;
    cin >> A >> B;

    int dot = ranges::find(A, '.') - A.begin();
    if (A.substr(dot) != ".0000") return puts("No"), 0;

    A.resize(dot);
    int a = stoi(A);

    vector<ll> pf;
    for (int i = 2; i * i <= a; i++) {
        if (a % i) continue;
        int cnt = 0;
        while (a % i == 0) {
            a /= i;
            cnt++;
        }
        pf.push_back(cnt);
    }
    if (a > 1) pf.push_back(1);

    B.erase(ranges::find(B, '.'));
    ll bup = stoll(B), blo = 10000;
    ll g = gcd(bup, blo);
    bup /= g;
    blo /= g;

    for (ll &p : pf) p *= bup;

    bool ans = true;
    for (ll p : pf) {
        if (p % blo) ans = false;
    }

    puts(ans ? "Yes" : "No");
}
0