結果

問題 No.601 Midpoint Erase
ユーザー pekempeypekempey
提出日時 2017-12-01 00:04:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 68,212 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 16:31:29
合計ジャッジ時間 2,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 51 ms
5,376 KB
testcase_04 AC 55 ms
5,376 KB
testcase_05 AC 40 ms
5,376 KB
testcase_06 AC 22 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 53 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 72 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

int main() {
  int n;
  cin >> n;

  int cnt[2][2] = {};

  while (n--) {
    int x, y;
    cin >> x >> y;
    cnt[x % 2][y % 2]++;
  }

  if ((cnt[0][0] / 2 + cnt[1][1] / 2 + min(cnt[0][1], cnt[1][0])) % 2 == 0) {
    puts("Alice");
  } else {
    puts("Bob");
  }
}
0