結果

問題 No.601 Midpoint Erase
ユーザー BQZetBQZet
提出日時 2017-12-18 03:11:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-05-09 11:17:06
合計ジャッジ時間 3,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 272 ms
11,392 KB
testcase_05 AC 197 ms
11,136 KB
testcase_06 AC 123 ms
11,008 KB
testcase_07 AC 256 ms
11,392 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 80 ms
10,880 KB
testcase_11 WA -
testcase_12 AC 183 ms
11,008 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 WA -
testcase_18 AC 33 ms
10,752 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 34 ms
10,752 KB
testcase_23 WA -
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

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==1 and y%2==0):
		l.append(2)
	elif(x%2==0 and y%2==1):
		l.append(3)
	elif(x%2==1 and y%2==1):
		l.append(4)
	else:
		l.append(5)
if (l.count(1)//2+l.count(2)//2+l.count(3)//2+l.count(4))%2==0:
	print("Bob")
else:
	print("Alice")
0