結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | uw_yu1rabbit |
提出日時 | 2020-08-16 00:27:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 646 bytes |
コンパイル時間 | 1,676 ms |
コンパイル使用メモリ | 110,332 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-11 04:33:55 |
合計ジャッジ時間 | 5,314 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,276 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 149 ms
6,816 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<iostream> #include<cmath> #include<algorithm> #include<vector> #include<numeric> #include<set> using namespace std; using ll = long long; vector<ll> enum_divisors(ll N) { vector<ll> res; for (ll i = 1; i * i <= N; ++i) { if (N % i == 0) { res.push_back(i); if (N/i != i) res.push_back(N/i); } } sort(res.begin(), res.end()); return res; } int main(){ ll a,b; cin >> a >> b; vector<ll> g = enum_divisors(gcd(a,b)); cout << (g.size() % 2 == 1 ? "Odd" : "Even") << endl; }