結果
| 問題 |
No.601 Midpoint Erase
|
| コンテスト | |
| ユーザー |
H20
|
| 提出日時 | 2021-01-21 10:42:10 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 136 ms / 2,000 ms |
| コード長 | 218 bytes |
| コンパイル時間 | 396 ms |
| コンパイル使用メモリ | 82,816 KB |
| 実行使用メモリ | 76,160 KB |
| 最終ジャッジ日時 | 2024-12-24 08:35:12 |
| 合計ジャッジ時間 | 4,279 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
N = int(input())
L = [[0] * 2 for i in range(2)]
for i in range(N):
x,y = map(int,input().split())
L[x%2][y%2]+=1
if (L[0][0]//2+L[0][1]//2+L[1][0]//2+L[1][1]//2)%2==1:
print('Alice')
else:
print('Bob')
H20