結果

問題 No.601 Midpoint Erase
ユーザー mokraimokrai
提出日時 2017-12-02 10:46:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-06-02 08:22:47
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 205 ms
18,944 KB
testcase_04 AC 229 ms
19,968 KB
testcase_05 AC 171 ms
17,280 KB
testcase_06 AC 104 ms
14,336 KB
testcase_07 AC 211 ms
19,456 KB
testcase_08 AC 189 ms
18,176 KB
testcase_09 AC 217 ms
19,712 KB
testcase_10 AC 71 ms
12,416 KB
testcase_11 AC 307 ms
23,552 KB
testcase_12 AC 156 ms
16,512 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 27 ms
10,496 KB
testcase_16 AC 28 ms
10,496 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 28 ms
10,496 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 26 ms
10,496 KB
testcase_24 AC 28 ms
10,496 KB
testcase_25 AC 27 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    points = []
    for i in range(N):
       x, y = map(int, input().split()) 
       points.append((x,y))
    #print(points)

    game_count = count_game_counts(points)
    #print(game_count)

    if game_count == 0:
        print("Bob")
    elif game_count % 2 == 1:
        print("Alice")
    else:
        print("Bob")

def count_game_counts(points):
    if len(points) == 0 or len(points) == 1:
        return 0

    odd_odd = 0
    odd_even = 0
    even_even = 0
    even_odd = 0

    for point in points:
        x, y = point
        if x % 2 == 0:
            if y % 2 == 0:
                even_even += 1
            else:
                even_odd += 1
        elif x % 2 == 1:
            if y % 2 == 1:
                odd_odd += 1
            else:
                odd_even += 1

    #print("even_even", even_even)
    #print("even_odd", even_odd)
    #print("odd_odd", odd_odd)
    #print("odd_even", odd_even)
    return even_even // 2 + even_odd // 2 + odd_odd // 2 + odd_even // 2

if __name__ == '__main__':
    main()
0