結果

問題 No.1113 二つの整数 / Two Integers
ユーザー QDSNQDSN
提出日時 2020-07-17 21:59:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 656 bytes
コンパイル時間 1,709 ms
コンパイル使用メモリ 174,372 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 08:28:33
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
typedef long long ll;
#define MOD 1000000007
using namespace std;
vector<ll> divisor(ll n) {
    vector<ll> ret;
    for(ll i = 1; i * i <= n; i++) {
        if(n % i == 0) {
            ret.push_back(i);
            if(i * i != n)
                ret.push_back(n / i);
        }
    }
    sort(begin(ret), end(ret));
    return (ret);
}
int main() {
    int a, b;
    cin >> a >> b;
    auto c = divisor(a);
    auto d = divisor(b);
    ll x = 0;
    for(auto e : c) {
        if(*lower_bound(all(d), e) == e) {
            x++;
        }
    }
    cout << (x % 2 ? "Odd" : "Even") << endl;
}
0