結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 RE -
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 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 2 ms
5,248 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 RE -
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 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

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;

    if (A.substr(ranges::find(A, '.') - A.begin()) != ".0000") {
        assert(false);
        puts("No");
        return 0;
    }

    A.resize(ranges::find(A, '.') - A.begin());
    ll a = stoi(A);

    vector<ll> pf;
    for (int i = 2; i * i <= a; i++) {
        if (a % i != 0) 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;

    bool ans = true;
    for (ll p : pf)
        if ((p * bup) % blo != 0) ans = false;

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