結果

問題 No.1113 二つの整数 / Two Integers
ユーザー keijakkeijak
提出日時 2020-07-17 21:42:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,351 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 205,448 KB
実行使用メモリ 10,140 KB
最終ジャッジ日時 2024-05-07 07:46:00
合計ジャッジ時間 6,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,888 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 89 ms
6,944 KB
testcase_03 AC 73 ms
6,940 KB
testcase_04 AC 74 ms
6,940 KB
testcase_05 TLE -
testcase_06 AC 2 ms
6,940 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;
using i64 = long long;
using u64 = unsigned long long;
#define REP(i, n) for (int i = 0; (i64)(i) < (i64)(n); ++i)

#ifdef ENABLE_DEBUG
template <typename T>
void debug(T value) {
  cerr << value;
}
template <typename T, typename... Ts>
void debug(T value, Ts... args) {
  cerr << value << ", ";
  debug(args...);
}
#define DEBUG(...)                              \
  do {                                          \
    cerr << " \033[33m (L" << __LINE__ << ") "; \
    cerr << #__VA_ARGS__ << ":\033[0m ";        \
    debug(__VA_ARGS__);                         \
    cerr << endl;                               \
  } while (0)
#else
#define debug(...)
#define DEBUG(...)
#endif

vector<pair<i64, int>> factorize(i64 n) {
  vector<pair<i64, int>> res;
  for (i64 k = 2; k * k <= n; ++k) {
    int cnt = 0;
    while (n % k == 0) {
      n /= k;
      ++cnt;
    }
    if (cnt > 0) {
      res.emplace_back(k, cnt);
    }
  }
  if (n > 1) {
    res.emplace_back(n, 1);
  }
  return res;
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  i64 A, B;
  cin >> A >> B;
  i64 g = std::gcd(A, B);
  auto fs = factorize(g);
  bool is_odd = true;
  for (auto [_, k] : fs) {
    if ((k + 1) % 2 == 0) {
      is_odd = false;
      break;
    }
  }
  cout << (is_odd ? "Odd" : "Even") << endl;
}
0