結果

問題 No.2954 Calculation of Exponentiation
ユーザー GOTKAKOGOTKAKO
提出日時 2024-11-08 22:20:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 202,256 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 22:20:21
合計ジャッジ時間 2,878 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 1 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 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
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 1 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 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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

    string A,B; cin >> A >> B;
    long long an = 0,ad = 10000,bn = 0,bd = 10000;
    for(auto c : A){
        if(c == '.') continue;
        an *= 10; an += c-'0';
    }
    bool minusB = false;
    for(auto c : B){
        if(c == '.') continue;
        if(c == '-') minusB = true;
        else bn *= 10,bn += c-'0';
    }
    long long g = gcd(an,ad);
    an /= g; ad /= g;
    g = gcd(bn,bd);
    bn /= g; bd /= g;
    if(minusB) swap(an,ad);

    if(bn == 0){cout << "Yes\n"; return 0;}
    if(ad != 1){cout << "No\n"; return 0;}

    int eg = 0;
    for(int i=2; i*i<=an; i++){
        int e = 0;
        while(an%i == 0) e++,an /= i;
        eg = gcd(eg,e);
    }
    if(an != 1) eg = gcd(eg,1);
    if(eg%bd == 0) cout << "Yes\n";
    else cout << "No\n";
}
0