結果

問題 No.1113 二つの整数 / Two Integers
ユーザー chocono2230chocono2230
提出日時 2020-07-17 21:35:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,069 bytes
コンパイル時間 1,567 ms
コンパイル使用メモリ 175,048 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-07 07:22:09
合計ジャッジ時間 6,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define rrep2(ri,x,n) for(int ri = (int)(n-1); ri >= (int)(x); ri--)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

map<ll, ll> prime_factorization(ll n){
  map<ll, ll> ans;
  ll a = 2;
  while(n >= a*a){
    if(n % a == 0){
      ans[a]++;
      n /= a;
    }else{
      a++;
    }
  }
  ans[n]++;

  return ans;
}

int main(){
  ll a, b;
  cin >> a >> b;
  auto ap = prime_factorization(a);
  auto bp = prime_factorization(b);
  for(auto p : ap){
    if(bp[p.first] == 0) continue;
    int mn = min(p.second, bp[p.first]);
    // cerr << p.second << " " << p.first << endl;
    if((mn+1) % 2 == 0){
      cout << "Even" << endl;
      return 0;
    }
  }
  cout << "Odd" << endl;
  return 0;
}
0