結果

問題 No.1113 二つの整数 / Two Integers
ユーザー KKT89KKT89
提出日時 2020-07-17 21:46:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 753 bytes
コンパイル時間 1,632 ms
コンパイル使用メモリ 117,916 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-07 07:55:59
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 80 ms
5,376 KB
testcase_03 AC 62 ms
5,376 KB
testcase_04 AC 61 ms
5,376 KB
testcase_05 AC 861 ms
5,376 KB
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 #

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll a,b; cin >> a >> b;
    ll g=__gcd(a,b);
    bool ok=0;
    for(ll i=2;i*i<=g;i++){
        if(g%i==0){
            int cnt=0;
            while(g%i==0){
                g/=i;
                cnt++;
            }
            if(cnt%2)ok=1;
        }
    }
    if(g>1)ok=1;
    if(ok)printf("Even\n");
    else printf("Odd\n");
}
0