結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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 2 ms
5,248 KB
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 AC 2 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 3 ms
5,248 KB
testcase_22 WA -
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 WA -
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>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	string a, b;
	cin >> a >> b;
	if (b == "0.0000") {
		cout << "Yes" << endl;
		return 0;
	}

	int n = a.size(), m = b.size();
	// a = p / q, b = r / s
	int p, q;
	{
		int p = stoi(a.substr(0, n - 5) + a.substr(n - 4, 4));
		int q = 10000;
		int g = gcd(p, q);
		p /= g;
		q /= g;
		if (b[0] == '-') {
			swap(p, q);
			b = b.substr(1);
		}
	}
	int r = stoi(b.substr(0, m - 5) + b.substr(m - 4, 4));
	int s = 10000 / gcd(r, 10000);
	if (a.substr(n - 5, 5) != ".0000") {
		cout << "No" << endl;
		return 0;
	}
	int A = stoi(a.substr(0, n - 5));
	vector<pair<int, int>> pf;
	for (int i = 2; i * i <= A; i++) {
		if (A % i == 0) {
			int cnt = 0;
			while (A % i == 0) {
				A /= i;
				cnt++;
			}
			pf.push_back({i, cnt});
		}
	}
	if (A > 1) {
		pf.push_back({A, 1});
	}

	for (auto [_, cnt] : pf) {
		if (cnt % s != 0) {
			cout << "No" << endl;
			return 0;
		}
	}
	cout << "Yes" << endl;
}
0