結果

問題 No.1113 二つの整数 / Two Integers
ユーザー face4face4
提出日時 2020-07-18 14:36:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 63,744 KB
実行使用メモリ 10,016 KB
最終ジャッジ日時 2024-05-07 23:46:16
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
using namespace std;

typedef long long ll;

ll gcd(ll a, ll b){
    return b == 0 ? a : gcd(b, a%b);
}

int main(){
    ll a, b;
    cin >> a >> b;
    ll g = gcd(a, b);
    ll num = 1;
    for(ll i = 2; i*i <= g; i++){
        if(g%i) continue;
        int cnt = 0;
        while(g%i == 0) g /= i, cnt++;
        num *= (cnt+1);
        num %= 2;
    }
    cout << (num == 0 ? "Even" : "Odd") << endl;
    return 0;
}
0