結果
問題 |
No.643 Two Operations No.2
|
ユーザー |
![]() |
提出日時 | 2018-02-28 19:07:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 375 bytes |
コンパイル時間 | 772 ms |
コンパイル使用メモリ | 72,256 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-21 14:09:25 |
合計ジャッジ時間 | 1,577 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 WA * 2 |
ソースコード
#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==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; }