結果
| 問題 |
No.643 Two Operations No.2
|
| コンテスト | |
| ユーザー |
focus
|
| 提出日時 | 2018-02-28 19:13:41 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 503 bytes |
| コンパイル時間 | 882 ms |
| コンパイル使用メモリ | 73,056 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-21 14:43:41 |
| 合計ジャッジ時間 | 1,262 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
#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*-1==Y){
cout<<"3\n";
return 0;
}
if(X==Y*-1){
cout << "2\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;
}
focus