結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
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 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 1 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 WA -
testcase_24 WA -
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 WA -
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>
using namespace std;

long long INPUT() {
    string S;
    cin >> S;

    int N = S.size();
    long long ret = 0;
    bool minus = false;

    for(int i = 0; i < N; i++) {
        if(S[i] == '-') minus = true;
        else if(S[i] != '.') ret = 10 * ret + (S[i] - '0');
    }

    if(minus) ret *= -1;

    return ret;
}

vector<pair<long long, int>> factorize(long long N) {
    vector<pair<long long, int>> ret;
    for(long long i = 2; i * i <= N; i++) {
        if(N % i != 0) continue;
        int e = 0;
        while(N % i == 0) {
            e++;
            N /= i;
        }
        ret.push_back({i, e});
    }
    if(N != 1) ret.push_back({N, 1});
    return ret;
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    long long A = INPUT();
    long long B = INPUT();

    auto fact = factorize(A);

    for(auto [p, e] : fact) {
        if(p == 2 || p == 5) e -= 4;
        if(e * B % 10000 != 0 || e * B < 10000) {
            cout << "No\n";
            return 0;
        }
    }

    cout << "Yes\n";

    return 0;
}
0