結果

問題 No.2954 Calculation of Exponentiation
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-11-10 02:19:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,319 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 210,924 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-10 02:20:02
合計ジャッジ時間 3,563 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 WA -
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 WA -
testcase_09 WA -
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 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,248 KB
testcase_20 WA -
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
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 1 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/modint>

using namespace std;
//using namespace atcoder;
using ll = long long;
//using mint = modint998244353;

map<ll, ll> prime;

void prime_factor(ll n){
    prime.clear();
    ll m = n;

    if (n % 2 == 0){
        while(n % 2 == 0){
            prime[2]++;
            n /= 2;
        }
    }

    for (ll i = 3; i*i <= m; i+=2){
        if (n % i == 0){
            while(n % i == 0){
                prime[i]++;
                n /= i;
            }
        }
    }

    if (n != 1){
        prime[n]++;
    }
}

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

    /*
       A = A*10^4/10^4として素因数分解
       A = prod_i p_i^e_i
       A^B = prod_i p_i^Be_i
       すべてのiについて、Be_iは非負整数か?
       B*10^4*e_i/10^4は非負整数か?
    */
    string AA, BB;
    cin >> AA >> BB;
    ll A, B, x=10000;
    A = stoll(AA.erase(AA.size()-5, 1));
    B = stoll(BB.erase(BB.size()-5, 1));
    prime_factor(A);
    map<ll, ll> mp = prime;
    prime_factor(x);
    for (auto [x, y] : prime) mp[x] -= y;
    
    for (auto [x, y] : prime){
        if ((B * y) % x != 0 || (B * y) / x < 0){
            cout << "No" << endl;
            return 0;
        }
    }

    cout << "Yes" << endl;

    return 0;
}
0