結果

問題 No.1113 二つの整数 / Two Integers
ユーザー siro53siro53
提出日時 2020-07-17 22:10:46
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 2,950 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 213,588 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-20 06:09:15
合計ジャッジ時間 3,145 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template <class T> inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T> inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return 1;
    }
    return 0;
}
void debug() { cerr << "\n"; }
template <class T> void debug(const T &x) { cerr << x << "\n"; }
template <class T, class... Args> void debug(const T &x, const Args &... args) {
    cerr << x << " ";
    debug(args...);
}
template <class T> void debugVector(const vector<T> &v) {
    for(const T &x : v) {
        cerr << x << " ";
    }
    cerr << "\n";
}
using ll = long long;

#define ALL(v) (v).begin(), (v).end()
#define RALL(v) (v).rbegin(), (v).rend()
const double EPS = 1e-7;
const int INF = 1 << 30;
const ll LLINF = 1LL << 60;
const double PI = acos(-1);
constexpr int MOD = 1000000007;
const int dx[4] = {1, 0, -1, 0};
const int dy[4] = {0, 1, 0, -1};

//-------------------------------------

struct factorise {
    ll mul(ll a, ll b, ll c) { return (__int128)a * b % c; }
    ll pow(ll a, ll b, ll m) {
        ll res = 1;
        while(b) {
            if(b & 1) {
                res = mul(res, a, m);
            }
            a = mul(a, a, m);
            b >>= 1;
        }
        return res;
    }
    bool isprime(ll n) {
        if(!(n & 1) && n != 2)
            return false;
        ll d = n - 1;
        int s = __builtin_ctzll(d);
        d >>= s;
        vector<int> A;
        if(n <= 1e9)
            A = {2, 3, 5, 7};
        else
            A = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37};
        for(int a : A) {
            ll p = pow(a, d, n);
            int i = s;
            while(p != 1 && p != n - 1 && a % n && --i) {
                p = mul(p, p, n);
            }
            if(p != n - 1 && i != s)
                return false;
        }
        return true;
    }

    ll pollard(ll n) {
        auto f = [&](ll a) { return mul(a, a, n) + 1; };
        ll x = 0, y = 0, p = 2, q;
        int i = 1, t = 0;
        while(t++ % 40 || gcd(p, n) == 1) {
            if(x == y)
                x = ++i, y = f(x);
            if(q = mul(p, abs(y - x), n))
                p = q;
            x = f(x);
            y = f(f(y));
        }
        return gcd(p, n);
    }

    vector<ll> factor(ll n) {
        if(n == 1)
            return {};
        if(isprime(n))
            return {n};
        ll a = pollard(n);
        assert(a != n && a != 1);
        auto l = factor(a), r = factor(n / a);
        l.insert(l.end(), r.begin(), r.end());
        return l;
    }
};

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll A, B;
    cin >> A >> B;
    ll g = gcd(A, B);
    factorise f;
    auto v = f.factor(g);
    map<ll, ll> cnt;
    for(auto i : v) {
        cnt[i]++;
    }
    ll n = 1;
    for(auto p : cnt) {
        n *= (p.second + 1);
    }
    cout << (n % 2 ? "Odd" : "Even") << endl;
}
0