結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | noritake |
提出日時 | 2020-07-17 21:35:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 813 bytes |
コンパイル時間 | 1,808 ms |
コンパイル使用メモリ | 175,456 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-05-07 07:19:56 |
合計ジャッジ時間 | 4,310 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,144 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
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 <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (int)(n); i++) using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<long long> vl; int main() { ll A, B; cin >> A >> B; vl va; for (int i = 1; i <= sqrt(A); i++) { if (A % i == 0) { va.push_back(i); va.push_back(A / i); } } vl vb; for (int i = 1; i <= sqrt(B); i++) { if (B % i == 0) { vb.push_back(i); vb.push_back(B / i); } } set<ll> s; rep(i, va.size()) { rep(j, vb.size()) { if (va[i] == vb[j]) { s.insert(va[i]); } } } if (s.size() % 2 == 0) { cout << "Even" << endl; } else { cout << "Odd" << endl; } }