結果

問題 No.1113 二つの整数 / Two Integers
ユーザー lasjg72lasjg72
提出日時 2020-07-17 21:43:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 469 ms / 1,000 ms
コード長 866 bytes
コンパイル時間 702 ms
コンパイル使用メモリ 81,044 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 13:27:13
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <tuple>
#include <vector>
#include <string>
#include <queue>
#include <cmath>
#include <set>
#include <map>
#include <cassert>

using namespace std;
using ll = long long;

template<class T> inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}

ll gcd(ll a, ll b){
    if(a%b == 0) return b;

    return gcd(b, a%b);
}

int main()
{
    ll a, b;
    cin >> a >> b;
    ll g = gcd(a, b);
    if(g == 1){
        cout << "Odd" << endl;
        return 0;
    }
    for(ll i = 2; i*i <= g; i++){
        if(i * i == g){
            cout << "Odd" << endl;
            return 0;
        }
    }
    cout << "Even" << endl;
    return 0;
}
0