結果

問題 No.601 Midpoint Erase
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-22 00:02:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 3,602 ms
コンパイル使用メモリ 247,284 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-22 00:02:18
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 17 ms
6,816 KB
testcase_04 AC 19 ms
6,816 KB
testcase_05 AC 14 ms
6,820 KB
testcase_06 AC 9 ms
6,820 KB
testcase_07 AC 18 ms
6,816 KB
testcase_08 AC 16 ms
6,816 KB
testcase_09 AC 19 ms
6,816 KB
testcase_10 AC 6 ms
6,820 KB
testcase_11 AC 25 ms
6,820 KB
testcase_12 AC 13 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

int main() {
    cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    
    int N;
    cin >> N;
    
    vector<int> cnt(4, 0);
    rep(i, 0, N) {
        int x, y;
        cin >> x >> y;
        
        x %= 2, y %= 2;
        
        if (x == 0 && y == 0) cnt[0]++;
        else if (x == 1 && y == 0) cnt[1]++;
        else if (x == 0 && y == 1) cnt[2]++;
        else cnt[3]++;
    }
    
    int sum = 0;
    rep(i, 0, 4) sum += cnt[i] / 2;
    
    if (sum % 2 == 0) cout << "Bob\n";
    else cout << "Alice\n";
}
0