結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | sigmani |
提出日時 | 2022-02-09 15:23:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 517 bytes |
コンパイル時間 | 895 ms |
コンパイル使用メモリ | 93,520 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 17:59:31 |
合計ジャッジ時間 | 5,109 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 17 ms
5,376 KB |
testcase_03 | AC | 136 ms
5,376 KB |
testcase_04 | AC | 218 ms
5,376 KB |
testcase_05 | AC | 108 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 242 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 16 ms
5,376 KB |
testcase_15 | AC | 267 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> #include<string> #include<math.h> #include<bitset> #include <vector> #include<bitset> #include <iomanip> #include <map> #include <set> #include <stack> #include <deque> #include <climits> #include <queue> using namespace std; int main() { long long A, B; cin >> A >> B; long long G = __gcd(A, B); long long D = pow(G, 0.5); long long count = 0; for (long long i = 1; i <= D; i++) { if (i * i == G)count++; } if (count > 0)cout << "Odd"; else cout << "Even"; }