結果
| 問題 | 
                            No.1224 I hate Sqrt Inequality
                             | 
                    
| コンテスト | |
| ユーザー | 
                             poohbear
                         | 
                    
| 提出日時 | 2020-09-11 21:28:33 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 791 bytes | 
| コンパイル時間 | 1,841 ms | 
| コンパイル使用メモリ | 192,564 KB | 
| 最終ジャッジ日時 | 2025-01-14 09:59:43 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 13 | 
ソースコード
#include <bits/stdc++.h>
#define rep(a,n) for (ll a = 0; a < (n); ++a)
using namespace std;
//using namespace atcoder;
using ll = long long;
typedef pair<ll,ll> P;
typedef pair<ll,P> PP;
typedef vector<vector<int> > Graph;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
const ll INF = 1e18;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    //input
    ll a,b;
    cin >> a >> b;
    ll g = __gcd(a,b);
    a /= g;
    b /= g;
    while(b%2==0){
        b /= 2;
    }
    while (b%5==0){
        b /= 5;
    }
    if(b==1){
        cout << "No" << endl;
    }
    else{
        cout << "Yes" << endl;
    }
    
    return 0;
}
            
            
            
        
            
poohbear