結果
問題 | No.1556 Power Equality |
ユーザー | NANDEESH GUPTA |
提出日時 | 2021-06-25 23:34:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 639 bytes |
コンパイル時間 | 1,652 ms |
コンパイル使用メモリ | 166,816 KB |
実行使用メモリ | 16,952 KB |
最終ジャッジ日時 | 2024-06-25 08:55:36 |
合計ジャッジ時間 | 7,972 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; //#pragma GCC diagnostic ignored "-W" #define f(i,a,b) for(int i=(a); i<int(b); ++i) #define fr(i,a,b) for(int i=(a); i>int(b); --i) typedef long long int lli; typedef vector<lli> vlli; typedef pair<lli,lli> plli; typedef vector<plli> vplli; int main(){ ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); lli a,b; cin>>a>>b; if(a>b) swap(a,b); if(a==b){ cout<<"Yes\n"; }else if(b%a==0){ lli tmp = b; lli pwr = 0; while(tmp%a==0){ tmp/=a; pwr++; } if(a*pwr == b) cout<<"Yes\n"; else cout<<"No\n"; }else{ cout<<"No\n"; } return 0; }