結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | Daiki Matsuoka |
提出日時 | 2020-07-27 00:16:28 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 515 bytes |
コンパイル時間 | 466 ms |
コンパイル使用メモリ | 69,680 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-06-28 19:43:05 |
合計ジャッジ時間 | 4,021 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include <iostream> #include <numeric> int main() { long long a, b; std::cin >> a >> b; long long g = std::gcd(a, b); for (int i = 2; 1LL * i * i <= g; ++i) { if (g % i == 0) { int count = 0; while (g % i == 0) { g /= i; ++count; } if (!(count & 1)) { std::cout << "Even" << '\n'; } } } std::cout << "Odd" << '\n'; return 0; }