結果

問題 No.601 Midpoint Erase
ユーザー olpheolphe
提出日時 2017-12-01 04:04:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 890 ms
コンパイル使用メモリ 97,104 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 03:16:36
合計ジャッジ時間 2,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "string"
#include "map"
#include "iomanip"
#include "cmath"

using namespace std;

const long long int MOD = 1000000007;

long long int N, M, K, H, W, L, R;


int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);

	cin >> N;
	vector<pair<int, int>>v(N);
	int num[4] = {};
	for (int i = 0; i < N; i++) {
		cin >> v[i].first >> v[i].second;
		if (v[i].first % 2 && v[i].second % 2) {
			num[0] ++;
		}
		if (v[i].first % 2==0 && v[i].second % 2) {
			num[1] ++;
		}
		if (v[i].first % 2 && v[i].second % 2==0) {
			num[2] ++;
		}
		if (v[i].first % 2==0 && v[i].second % 2==0) {
			num[3] ++;
		}
	}
	for (int i = 0; i < 4; i++) {
		M += num[i] / 2;
	}
	if (M % 2) {
		cout << "Alice\n";
	}
	else {
		cout << "Bob\n";
	}
	return 0;
}
0