結果

問題 No.1113 二つの整数 / Two Integers
ユーザー beetbeet
提出日時 2020-07-17 22:12:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 715 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 207,728 KB
実行使用メモリ 13,896 KB
最終ジャッジ日時 2024-05-07 09:05:23
合計ジャッジ時間 6,209 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,884 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 90 ms
6,940 KB
testcase_03 AC 74 ms
6,940 KB
testcase_04 AC 74 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>
using namespace std;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
using Int = long long;
const char newl = '\n';


template<typename T>
map<T, Int> factorize(T x){
  map<T, Int> res;
  for(Int i=2;i*i<=x;i++){
    while(x%i==0){
      x/=i;
      res[i]++;
    }
  }
  if(x!=1) res[x]++;
  return res;
}

//INSERT ABOVE HERE
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  Int a,b;
  cin>>a>>b;
  Int g=gcd(a,b);

  auto mp=factorize(g);
  Int x=1;
  for(auto p:mp){
    x*=p.second+1;
    x%=2;
  }
  if(x) cout<<"Odd"<<endl;
  else cout<<"Even"<<endl;
  return 0;
}
0