結果
問題 | No.601 Midpoint Erase |
ユーザー |
|
提出日時 | 2019-01-07 00:57:56 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 79 ms / 2,000 ms |
コード長 | 797 bytes |
コンパイル時間 | 768 ms |
コンパイル使用メモリ | 84,576 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-24 00:19:43 |
合計ジャッジ時間 | 2,946 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
#define _USE_MATH_DEFINES #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<string> #include<iostream> #include<iostream> #include<cctype> #include<cstdio> #include<vector> #include<stack> #include<queue> #include <algorithm> #include<math.h> #include<set> #include<map> #include <sstream> #include<iomanip> #include <ctype.h> #include <fstream> #include <cassert> //#include <bits/stdc++.h> using namespace std; //#include<bits/stdc++.h> int main() { int a = 0, b = 0, c = 0, d = 0; int n; cin >> n; for (int i = 0; i < n; i++) { int x, y; cin >> x >> y; if (x % 2) { if (y % 2)a++; else b++; } else { if (y % 2)c++; else d++; } } int t = a / 2 + b / 2 + c / 2 + d / 2; if (t % 2==0)cout << "Bob" << endl; else cout << "Alice" << endl; return 0; }