結果

問題 No.1113 二つの整数 / Two Integers
ユーザー kurotemkokurotemko
提出日時 2020-07-26 15:44:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 165,776 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-28 16:31:49
合計ジャッジ時間 6,513 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

// ------------------------------------------------------------
// けんちょんさんのブログからコピペ
// https://qiita.com/drken/items/0c88a37eec520f82b788

long long GCD(long long a, long long b) {
    if (b == 0) return a;
    else return GCD(b, a % b);
}

// ここまでコピペ
// ------------------------------------------------------------

int main() {
    // 入力
    long long a, b;
    cin >> a >> b;
    // a > b にしたい
    if(a < b) {
        long long tmp = a;
        a = b;
        b = a;
    }
    // 最大公約数を計算
    long long gcd = GCD(a, b);
    // gcdがある整数pの2乗で表せるならodd
    for(long long i = 1; i <= sqrt(gcd); ++i) {
        if(i*i == gcd) {
            cout << "Odd" << endl;
            return 0;
        }
    }
    cout << "Even" << endl;
    return 0;
}
0