結果

問題 No.3108 Luke or Bishop
ユーザー Alc5_
提出日時 2025-04-18 23:27:52
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 3,448 ms
コンパイル使用メモリ 272,612 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-04-18 23:27:57
合計ジャッジ時間 4,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using ll = long long;
const ll INF = 1e18;
const ll MOD = 998244353;
const ll MODD = 1e9 + 7;
long long modpow(long long x, long long n);
long long modinv(long long a, long long m);
bool palindrome(const string& s);

int main(){
	ll x,y = 0;
	cin >> x >> y;
	if(x == 0 && y == 0){
		cout << "0" << endl;
	}
	else if(x == 0 && y != 0){
		cout << "1" << endl;
	}
	else if(y == 0 && x != 0){
		cout << "1" << endl;
	}
	else if(abs(x) == abs(y)){
		cout << "1" << endl;
	} else {
		cout << "2" << endl;
	}

	return 0;
}
0