結果

問題 No.2103 ±1s Game
ユーザー tnakao0123tnakao0123
提出日時 2024-07-18 18:08:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 643 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 43,648 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 18:08:54
合計ジャッジ時間 1,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2103.cc:  No.2103 ツア1s Game - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* subroutines */

bool check(int x, int y, int k, int p) {
  int n = x + y - k;
  if (n & 1) {
    bool f1 =
      (x > 0 && check(x - 1, y, k, -p)) ||
      (y > 0 && check(x, y - 1, k, -p));
    return ! f1;
  }

  int h = n / 2;
  if (y <= h) return p > 0;
  if (x <= h) return ((y & 1) == (p > 0 ? 0 : 1));
  return false;
}

/* main */

int main() {
  int x, y, k, p;
  scanf("%d%d%d%d", &x, &y, &k, &p);

  bool f0 = check(x, y, k, p);
  if (f0) puts("Alice");
  else puts("Bob");

  return 0;
}
0