結果

問題 No.601 Midpoint Erase
ユーザー GrayCoderGrayCoder
提出日時 2017-12-01 06:03:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2024-06-02 08:15:17
合計ジャッジ時間 3,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 217 ms
19,328 KB
testcase_04 AC 241 ms
20,736 KB
testcase_05 AC 180 ms
17,792 KB
testcase_06 AC 107 ms
14,464 KB
testcase_07 AC 230 ms
19,968 KB
testcase_08 AC 192 ms
18,560 KB
testcase_09 AC 237 ms
20,352 KB
testcase_10 AC 69 ms
12,544 KB
testcase_11 AC 328 ms
24,448 KB
testcase_12 AC 160 ms
16,768 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 25 ms
10,496 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 26 ms
10,496 KB
testcase_21 AC 26 ms
10,496 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 26 ms
10,496 KB
testcase_25 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    XY = tuple(tuple(map(int, input().split())) for _ in [0] * N)

    cnt = [0] * 4
    for x, y in XY:
        if x & 1:
            if y & 1:
                cnt[0] += 1
            else:
                cnt[1] += 1
        else:
            if y & 1:
                cnt[2] += 1
            else:
                cnt[3] += 1

    n = 0
    for i in cnt:
        n += i // 2

    if n & 1:
        print('Alice')
    else:
        print('Bob')

main()
0