結果

問題 No.870 無敵囲い
ユーザー ThetaTheta
提出日時 2022-10-19 12:13:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 32 ms / 300 ms
コード長 998 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-29 15:14:53
合計ジャッジ時間 1,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


class Point:
    def __init__(self, column, row) -> None:
        self.column = column
        self.row = row

    def __eq__(self, __o: object) -> bool:
        return self.column == __o.column and self.row == __o.row

    def __ne__(self, __o: object) -> bool:
        return not self.__eq__(__o)


def main():
    N = int(input())
    hisha = Point(2, 8)
    right_gin = Point(3, 9)
    left_gin = Point(7, 9)

    for _ in range(N):
        before_c, before_r, after_c, after_r = map(int, input().split())
        before_point = Point(before_c, before_r)
        after_point = Point(after_c, after_r)

        if before_point == hisha:
            hisha = after_point
        if before_point == left_gin:
            left_gin = after_point
        if before_point == right_gin:
            right_gin = after_point

    if hisha == Point(5, 8) and left_gin == Point(6, 8) and right_gin == Point(4, 8):
        print("YES")
    else:
        print("NO")


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