結果
| 問題 | No.601 Midpoint Erase |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-03-31 00:16:15 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 10 ms / 2,000 ms |
| コード長 | 549 bytes |
| 記録 | |
| コンパイル時間 | 1,863 ms |
| コンパイル使用メモリ | 336,768 KB |
| 実行使用メモリ | 9,228 KB |
| 最終ジャッジ日時 | 2026-07-08 03:28:26 |
| 合計ジャッジ時間 | 4,193 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "settings/debug.cpp"
#else
#define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int n;
cin >> n;
vector<int> cnt(4, 0);
rep(i, n) {
int x, y;
cin >> x >> y;
cnt[x % 2 * 2 + y % 2]++;
}
int ans = cnt[0] / 2 + cnt[1] / 2 + cnt[2] / 2 + cnt[3] / 2;
cout << (ans % 2 == 1 ? "Alice" : "Bob") << '\n';
return 0;
}
a01sa01to