結果

問題 No.1224 I hate Sqrt Inequality
ユーザー cellcraftycellcrafty
提出日時 2020-09-11 22:52:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 444 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 68,608 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 11:49:38
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<numeric>
using namespace std;


int main()
{
    long long int a, b;
    long long int a_raw, b_raw;
    cin >> a_raw >> b_raw;
    long long int tmp_gcd = gcd(a_raw, b_raw);
    a = a_raw / tmp_gcd;
    b = b_raw / tmp_gcd;
    long long int b_chk = b;
    while(b_chk % 2 == 0) b_chk /= 2;
    while(b_chk % 5 == 0) b_chk /= 5;
    if (b == 1){
        cout << "Yes";
    }
    else {
        cout << "No";
    }
}
0