結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー |
![]() |
提出日時 | 2020-07-18 02:11:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 308 bytes |
コンパイル時間 | 2,797 ms |
コンパイル使用メモリ | 192,180 KB |
最終ジャッジ日時 | 2025-01-11 23:46:08 |
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 12 WA * 3 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:11: warning: ‘b’ is used uninitialized [-Wuninitialized] 12 | ll n=gcd(a,b); | ~~~^~~~~ main.cpp:9:8: note: ‘b’ was declared here 9 | ll a,b; | ^
ソースコード
#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; }