結果

問題 No.2954 Calculation of Exponentiation
ユーザー downerdowner
提出日時 2024-11-08 23:04:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,173 bytes
コンパイル時間 3,002 ms
コンパイル使用メモリ 245,628 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 23:04:34
合計ジャッジ時間 3,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

long long pow(long long b, long long e) {
    long long ret = 1;
    while(e) {
        if(e & 1) ret *= b;
        b *= b;
        e >>= 1;
    }
    return ret;
}

int main() {
	string A, B;
    cin >> A >> B;
    
    long long AI = stoi(A.substr(0, A.size() - 5));
    long long AD = stoi(A.substr(A.size() - 4));
    long long BI = stoi(B.substr(0, B.size() - 5));
    long long BD = stoi(B.substr(B.size() - 4));

    if(BI == 0 && BD == 0) {
        cout << "Yes\n";
        return 0;
    }

    if(BI < 0) {
        BI *= -1;
        if(10000 % (10000 * AI + AD) != 0) {
            cout << "No\n";
            return 0; 
        }
        AI = 10000 / (10000 * AI + AD);
        AD = 0;
    }

    if(AD) {
        cout << "No\n";
        return 0;
    }

    for(long long i = 0; i <= 10000; i++) {
        if(i * BD % 10000 == 0) {
            for(long long j = 0; j <= AI; j++) {
                if(AI < pow(j, i)) break;
                if(AI == pow(j, i)) {
                    cout << "Yes\n";
                    return 0; 
                }
            }
        }
    }

    cout << "No\n";

    return 0;
}
0