結果

問題 No.2954 Calculation of Exponentiation
ユーザー syuya2036syuya2036
提出日時 2024-11-08 22:48:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 621 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 166,004 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 22:48:58
合計ジャッジ時間 2,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 WA -
testcase_16 WA -
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 WA -
testcase_24 AC 2 ms
5,248 KB
testcase_25 WA -
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 <cmath>
using namespace std;

long long gcd(long long n1, long long n2) {
    long long ret = n1 % n2;
    return (ret == 0) ? n2 : gcd(n2, ret);
}

double A, B;
int main() {
    cin>>A>>B;
    if(B>=0) {
        double p = 10000/gcd((long long)B*10000, 10000);
        long long r = round(pow(A, 1.0 / p));
        if(A == pow(r, p)) cout<<"Yes"<<endl;
        else cout<<"No"<<endl;
    } else {
        double p = 10000/gcd((long long)B*10000, 10000);
        long long r = round(pow(A, -1.0 / p));
        if(A == pow(r, p)) cout<<"Yes"<<endl;
        else cout<<"No"<<endl;
    }
} 
0