結果
| 問題 |
No.601 Midpoint Erase
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-22 15:36:40 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 129 ms / 2,000 ms |
| コード長 | 229 bytes |
| コンパイル時間 | 789 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 76,764 KB |
| 最終ジャッジ日時 | 2024-06-26 04:52:16 |
| 合計ジャッジ時間 | 3,774 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
N = int(input())
XY = [0] * 4
for i in range(N):
x, y = list(map(int, input().split()))
XY[(x % 2) * 2 + y % 2] += 1
if sum([i // 2 for i in XY]) % 2:
print('Alice')
else:
print('Bob')