結果
問題 |
No.643 Two Operations No.2
|
ユーザー |
![]() |
提出日時 | 2018-02-28 19:13:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 746 ms |
コンパイル使用メモリ | 73,504 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 14:43:13 |
合計ジャッジ時間 | 1,370 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 WA * 1 |
ソースコード
#include<iostream> #include<vector> #include<bitset> #include<algorithm> #include<cmath> #include<string> using namespace std; int main(){ int X,Y; cin >> X >> Y; if(X*-1==Y){ cout<<"3\n"; return 0; } if(X==Y*-1){ cout << "2\n"; return 0; } if(X==Y){ cout << "0\n"; return 0; } if(X!=0&&Y!=0){ cout << "-1\n"; return 0; } if(Y!=0) cout << "2\n"; else cout << "1\n"; return 0; }