結果

問題 No.1113 二つの整数 / Two Integers
ユーザー Daiki MatsuokaDaiki Matsuoka
提出日時 2020-07-27 00:17:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 69,700 KB
実行使用メモリ 7,612 KB
最終ジャッジ日時 2023-09-11 05:22:38
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <numeric>

int main()
{
    long long a, b;
    std::cin >> a >> b;
    long long g = std::gcd(a, b);
    for (int i = 2; 1LL * i * i <= g; ++i)
    {
        if (g % i == 0)
        {
            int count = 0;
            while (g % i == 0)
            {
                g /= i;
                ++count;
            }
            if (count & 1)
            {
                std::cout << "Even" << '\n';
                return 0;
            }
        }
    }
    std::cout << "Odd" << '\n';
    return 0;
}
0