結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | tsushima |
提出日時 | 2020-07-17 21:29:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 826 bytes |
コンパイル時間 | 2,020 ms |
コンパイル使用メモリ | 207,952 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-07 06:56:31 |
合計ジャッジ時間 | 5,726 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 79 ms
5,376 KB |
testcase_03 | AC | 65 ms
5,376 KB |
testcase_04 | AC | 64 ms
5,376 KB |
testcase_05 | AC | 914 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for (int i = a; i < n; i++) #define repr(i, a, n) for (int i = n - 1; i >= a; i--) using namespace std; using ll = long long; using P = pair<int, int>; template <typename T> void chmin(T &a, T b) { a = min(a, b); } template <typename T> void chmax(T &a, T b) { a = max(a, b); } map<ll, int> prime_factor(ll n) { map<ll, int> ret; for (ll i = 2; i * i <= n; i++) { while (n % i == 0) { ret[i]++; n /= i; } } if (n != 1) ret[n] = 1; return ret; } int main() { ios::sync_with_stdio(false); cin.tie(0); ll a, b; cin >> a >> b; ll gcdv = __gcd(a, b); map<ll, int> pf = prime_factor(gcdv); ll ans = 1; for (auto p : pf) { ans *= p.second + 1; } if (ans & 1) cout << "Odd" << endl; else cout << "Even" << endl; }