結果
| 問題 | 
                            No.643 Two Operations No.2
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-04-16 09:39:04 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 392 bytes | 
| コンパイル時間 | 692 ms | 
| コンパイル使用メモリ | 65,900 KB | 
| 最終ジャッジ日時 | 2025-01-09 19:24:50 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 11 WA * 2 | 
ソースコード
#include <iostream>
void solve() {
    int x, y;
    std::cin >> x >> y;
    int ans;
    if (x == y) {
        ans = 0;
    } else if (y == 0) {
        ans = 1;
    } else if (x == 0) {
        ans = 2;
    } else {
        ans = -1;
    }
    std::cout << ans << std::endl;
}
int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    solve();
    return 0;
}