結果

問題 No.1113 二つの整数 / Two Integers
ユーザー QDSNQDSN
提出日時 2020-07-17 22:05:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 733 bytes
コンパイル時間 1,753 ms
コンパイル使用メモリ 173,088 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-05-07 08:47:03
合計ジャッジ時間 5,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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