結果

問題 No.601 Midpoint Erase
ユーザー mokraimokrai
提出日時 2017-12-01 06:52:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,121 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-05-05 19:20:33
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 529 ms
18,944 KB
testcase_04 AC 636 ms
20,224 KB
testcase_05 AC 382 ms
17,280 KB
testcase_06 AC 179 ms
14,336 KB
testcase_07 AC 596 ms
19,584 KB
testcase_08 AC 462 ms
18,304 KB
testcase_09 AC 601 ms
19,840 KB
testcase_10 AC 95 ms
12,544 KB
testcase_11 AC 1,121 ms
23,680 KB
testcase_12 AC 341 ms
16,512 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 28 ms
10,624 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 = 0
    flag = True
    while flag == True:
        points = find_erase_points(points)
        if points is None:
            flag = False
        else:
            game_count += 1

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

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

    for (i, point) in enumerate(points):
        x, y = point
        for (j, point2) in enumerate(points):
            x2, y2 = point2
            x_dist = abs(x2 - x)
            y_dist = abs(y2 - y)
            if x_dist == 0 and y_dist == 0:
                continue
            if x_dist % 2 == 0 and y_dist % 2 == 0:
                del points[j]
                del points[i]
                return points
    return None

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