結果

問題 No.1113 二つの整数 / Two Integers
ユーザー ぷらぷら
提出日時 2020-07-17 21:36:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 670 bytes
コンパイル時間 1,481 ms
コンパイル使用メモリ 167,376 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 07:23:47
合計ジャッジ時間 2,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 Y = sqrt(X);
    double Z = sqrt(X);
    if(Y != Z) {
        cout << "Even" << endl;
    }
    else {
        for(int i = 2; i*i <= Y; i++) {
            if(Y%i == 0) {
                cout << "Even" << endl;
                return 0;
            }
        }
        cout << "Odd" << endl;
    }
}
0