結果

問題 No.601 Midpoint Erase
ユーザー RyutoRyuto
提出日時 2017-12-11 02:13:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-12-23 03:31:10
合計ジャッジ時間 4,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 268 ms
20,864 KB
testcase_04 AC 297 ms
22,400 KB
testcase_05 AC 219 ms
18,816 KB
testcase_06 AC 139 ms
15,360 KB
testcase_07 AC 284 ms
21,632 KB
testcase_08 AC 245 ms
20,096 KB
testcase_09 AC 289 ms
22,016 KB
testcase_10 AC 89 ms
13,056 KB
testcase_11 AC 408 ms
26,624 KB
testcase_12 AC 199 ms
18,048 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 34 ms
10,752 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 32 ms
10,624 KB
testcase_22 AC 32 ms
10,880 KB
testcase_23 AC 33 ms
10,752 KB
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

n = int(input().strip())
points = []
for i in range(n):
    points.append([int(x) for x in input().split()])

eveneven = 0
evenodd = 0
oddeven = 0
oddodd = 0

for point in points:
    if point[0]%2==0 and point[1]%2==0:
        eveneven += 1
    elif point[0]%2==0 and point[1]%2==1:
        evenodd += 1
    elif point[0]%2==1 and point[1]%2==0:
        oddeven += 1
    else:
        oddodd += 1

ntimes = eveneven//2 + evenodd//2 + oddeven//2 + oddodd//2

if ntimes % 2 == 0:
    print('Bob')
else:
    print('Alice')
0