結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | uw_yu1rabbit |
提出日時 | 2020-08-16 00:17:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 516 bytes |
コンパイル時間 | 1,021 ms |
コンパイル使用メモリ | 102,152 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-10-11 04:21:50 |
合計ジャッジ時間 | 5,292 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
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 | -- | - |
ソースコード
#include<iostream> #include<cmath> #include<algorithm> #include<vector> #include<numeric> #include<set> using namespace std; using ll = long long; set<ll> enum_divisors(ll n){ set<ll> res; for(ll i = 1; i <= sqrt(n); i++){ if(n % i == 0){ res.insert(i); if(n / i != i) res.insert(n / i); } } return res; } int main(){ ll a,b; cin >> a >> b; ll k = gcd(a,b); enum_divisors(k); cout << (k % 2 == 0 ? "Even" : "Odd") << endl; }