結果
| 問題 | No.601 Midpoint Erase |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-22 15:36:40 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 115 ms / 2,000 ms |
| + 508µs | |
| コード長 | 229 bytes |
| 記録 | |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 95,720 KB |
| 実行使用メモリ | 84,992 KB |
| 最終ジャッジ日時 | 2026-07-30 07:59:28 |
| 合計ジャッジ時間 | 4,623 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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')