結果
問題 | No.643 Two Operations No.2 |
ユーザー |
|
提出日時 | 2018-06-06 15:50:06 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 319 bytes |
コンパイル時間 | 525 ms |
コンパイル使用メモリ | 63,880 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 10:15:30 |
合計ジャッジ時間 | 1,070 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
#include <iostream> using namespace std; int main(int argc, char* argv[]) { int X,Y; cin>>X>>Y; if (X==Y){ cout<<0<<endl; return 0; } if (X==0 && Y!=0){ cout<<2<<endl; return 0; } if (X!=0 &&Y==0){ cout<<1<<endl; return 0; } if (X==-Y){ cout<<3<<endl; return 0; } cout<<-1<<endl; return 0; }