結果

問題 No.601 Midpoint Erase
ユーザー BQZetBQZet
提出日時 2017-12-18 02:51:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-09 11:14:46
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 229 ms
10,880 KB
testcase_04 AC 265 ms
10,880 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 247 ms
11,008 KB
testcase_08 AC 219 ms
11,008 KB
testcase_09 AC 253 ms
10,880 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 174 ms
11,008 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 30 ms
10,880 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
l=[]
for i in range(N):
	x,y=map(int,input().split())
	if(x%2==0 and y%2==0):
		l.append(1)
	elif(x%2==0 and y%2==0):
		l.append(2)
	elif(x%2==0 and y%2==0):
		l.append(3)
	elif(x%2==0 and y%2==0):
		l.append(4)
if (l.count(1)//2+l.count(2)//2+l.count(3)//2+l.count(4))%2==0:
	print("Bob")
else:
	print("Alice")
0