結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | mmn15277198 |
提出日時 | 2020-07-18 15:18:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,080 bytes |
コンパイル時間 | 954 ms |
コンパイル使用メモリ | 98,872 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-07 16:01:56 |
合計ジャッジ時間 | 1,623 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
ソースコード
#pragma GCC optimize("Ofast") #include<iostream> #include<stdio.h> #include<algorithm> #include<vector> #include<string.h> #include<math.h> #include<map> #include<iomanip> #include<queue> const long long INF_L = 1e17+7; const long long INF_I = 1e9+7; const long long MOD = 1e9+7; const double EPS = 1e-8; const double PI=acos(-1); using namespace std; long long GCD(long long a,long long b){ long long x=max(a,b),y=min(a,b); if(x%y==0){ return y; }else{ return GCD(y,x%y); } } bool sqr_2bun(long long x){ long long start=1; long long end=x; int id=0; long long mid; if(x==1){ return true; } while(1){ mid=(end+start)/2; if(mid*mid>x){ end=mid; }else if(mid*mid<x){ start=mid; }else if(mid*mid==x){ return true; } if(end-start==1){ if(end*end==x || start*start==x){ return true; }else{ return false; } } } } int main(){ cin.tie(0); ios::sync_with_stdio(false); long long a,b; cin >> a >> b; long long g=GCD(a,b); if(sqr_2bun(g)){ cout << "Odd" << endl; }else{ cout << "Even" << endl; } return 0; }