結果
問題 |
No.1113 二つの整数 / Two Integers
|
ユーザー |
![]() |
提出日時 | 2020-07-18 02:12:31 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 14 ms / 1,000 ms |
コード長 | 309 bytes |
コンパイル時間 | 1,940 ms |
コンパイル使用メモリ | 194,584 KB |
最終ジャッジ日時 | 2025-01-11 23:46:18 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main() { ll a,b; cin>>a>>b; ll n=gcd(a,b); ll m=sqrt(n); if(m*m==n) cout<<"Odd"<<endl; else cout<<"Even"<<endl; return 0; }