結果
| 問題 |
No.3108 Luke or Bishop
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-18 21:12:52 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 562 bytes |
| コンパイル時間 | 532 ms |
| コンパイル使用メモリ | 65,928 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2025-04-18 21:12:58 |
| 合計ジャッジ時間 | 1,350 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 26 |
ソースコード
#include <iostream>
#define ll long long
using namespace std;
const int inf = 1073741823;
int main() {
ll gx, gy;
cin >> gx >> gy;
int rook, bishop;
if (gx == 0 && gy == 0) {
rook = 0;
} else if (gx == 0 || gy == 0) {
rook = 1;
} else {
rook = 2;
}
if (gx == 0 && gy == 0) {
bishop = 0;
} else if (gx + gy == 0 || gx - gy == 0) {
bishop = 1;
} else if ((gx + gy) % 2 == 0) {
bishop = 2;
} else {
bishop = inf;
}
cout << min(rook, bishop) << endl;
}