結果

問題 No.601 Midpoint Erase
ユーザー tanimani364tanimani364
提出日時 2021-03-23 20:58:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-05-04 11:40:47
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
63,488 KB
testcase_01 AC 66 ms
63,616 KB
testcase_02 AC 69 ms
63,616 KB
testcase_03 AC 109 ms
78,720 KB
testcase_04 AC 108 ms
78,464 KB
testcase_05 AC 101 ms
78,336 KB
testcase_06 AC 96 ms
77,312 KB
testcase_07 AC 108 ms
78,336 KB
testcase_08 AC 104 ms
78,720 KB
testcase_09 AC 108 ms
78,592 KB
testcase_10 AC 93 ms
77,312 KB
testcase_11 AC 115 ms
78,720 KB
testcase_12 AC 101 ms
78,080 KB
testcase_13 AC 65 ms
63,616 KB
testcase_14 AC 65 ms
63,744 KB
testcase_15 AC 66 ms
63,744 KB
testcase_16 AC 64 ms
63,488 KB
testcase_17 AC 64 ms
63,616 KB
testcase_18 AC 65 ms
63,488 KB
testcase_19 AC 66 ms
63,744 KB
testcase_20 AC 65 ms
63,616 KB
testcase_21 AC 64 ms
63,488 KB
testcase_22 AC 64 ms
63,744 KB
testcase_23 AC 65 ms
63,360 KB
testcase_24 AC 65 ms
63,616 KB
testcase_25 AC 65 ms
63,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#coding:utf-8

import math
import string
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt

	
def main():
	read=stdin.readline

	#edit here!
	n=int(read())
	x=[0]*n
	y=[0]*n
	for i in range(n):
		x[i],y[i]=map(int,read().split())
	
	cnt=[0]*4
	for i in range(n):
		if x[i]%2==0 and y[i]%2==0:
			cnt[0]+=1
		elif x[i]%2==0 and y[i]%2==1:
			cnt[1]+=1
		elif x[i]%2==1 and y[i]%2==0:
			cnt[2]+=1
		else:
			cnt[3]+=1
	
	ans=0
	for i in range(4):
		ans+=cnt[i]//2
	
	if ans%2==1:
		print("Alice")
	else:
		print("Bob")
if __name__ == '__main__':
	main()
0