結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 87 ms
6,944 KB
testcase_03 AC 72 ms
6,940 KB
testcase_04 AC 72 ms
6,940 KB
testcase_05 AC 986 ms
6,940 KB
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>
using namespace std;
#define int long long
typedef pair<int,int> P;
int INF = 1e9+7;
int mod = 1e9+7;
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
int gcd(int X,int Y) {
    if(X%Y == 0) {
        return Y;
    }
    else {
        return gcd(Y,X%Y);
    }
}
signed main() {
    int A,B;
    cin >> A >> B;
    int X = gcd(A,B);
    int cnt = 1;
    for(int i = 2; i*i <= X; i++) {
        int res = 0;
        if(X%i == 0) {
            while(X%i == 0) {
                res++;
                X/=i;
            }
        }
        cnt*=(res+1);
    }
    if(X != 1) {
        cnt*=2;
    }
    if(cnt%2 == 0) {
        cout << "Even" << endl;
    }
    else {
        cout << "Odd" << endl;
    }
}
0