結果

問題 No.1113 二つの整数 / Two Integers
ユーザー noritakenoritake
提出日時 2020-07-17 21:35:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 813 bytes
コンパイル時間 1,869 ms
コンパイル使用メモリ 172,208 KB
実行使用メモリ 7,544 KB
最終ジャッジ日時 2023-08-20 00:00:05
合計ジャッジ時間 3,865 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<long long> vl;

int main() {
    ll A, B;
    cin >> A >> B;

    vl va;
    for (int i = 1; i <= sqrt(A); i++) {
        if (A % i == 0) {
            va.push_back(i);
            va.push_back(A / i);
        }
    }

    vl vb;
    for (int i = 1; i <= sqrt(B); i++) {
        if (B % i == 0) {
            vb.push_back(i);
            vb.push_back(B / i);
        }
    }

    set<ll> s;
    rep(i, va.size()) {
        rep(j, vb.size()) {
            if (va[i] == vb[j]) {
                s.insert(va[i]);
            }
        }
    }

    if (s.size() % 2 == 0) {
        cout << "Even" << endl;
    } else {
        cout << "Odd" << endl;
    }
}
0