結果
| 問題 |
No.1556 Power Equality
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-03 05:34:33 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 901 bytes |
| コンパイル時間 | 2,711 ms |
| コンパイル使用メモリ | 217,804 KB |
| 最終ジャッジ日時 | 2025-01-23 13:52:56 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
ソースコード
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
return (ull)rng() % B;
}
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
ll a,b; cin >> a >> b;
map<int,ll> mp,mp2;
int c=a;
for(int i=2;i*i<=c;i++){
while(c%i==0){
mp[i]++;
c/=i;
}
}
if(c>1)mp[c]++;
c=b;
for(int i=2;i*i<=c;i++){
while(c%i==0){
mp2[i]++;
c/=i;
}
}
if(c>1)mp2[c]++;
bool ok=true;
for(auto p:mp){
if(mp2[p.first]*a!=p.second*b)ok=false;
}
for(auto p:mp2){
if(mp[p.first]*b!=p.second*a)ok=false;
}
if(ok){
printf("Yes\n");
}
else{
printf("No\n");
}
}