結果

問題 No.870 無敵囲い
ユーザー miya145592miya145592
提出日時 2023-05-02 00:14:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 300 ms
コード長 415 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 53,660 KB
最終ジャッジ日時 2024-11-20 19:45:18
合計ジャッジ時間 1,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,200 KB
testcase_01 AC 40 ms
52,336 KB
testcase_02 AC 40 ms
52,400 KB
testcase_03 AC 39 ms
52,752 KB
testcase_04 AC 37 ms
53,072 KB
testcase_05 AC 38 ms
52,620 KB
testcase_06 AC 42 ms
52,248 KB
testcase_07 AC 38 ms
52,808 KB
testcase_08 AC 38 ms
52,544 KB
testcase_09 AC 38 ms
52,808 KB
testcase_10 AC 39 ms
52,500 KB
testcase_11 AC 39 ms
52,752 KB
testcase_12 AC 38 ms
52,072 KB
testcase_13 AC 38 ms
52,948 KB
testcase_14 AC 38 ms
52,600 KB
testcase_15 AC 39 ms
52,412 KB
testcase_16 AC 39 ms
52,712 KB
testcase_17 AC 39 ms
53,432 KB
testcase_18 AC 45 ms
52,524 KB
testcase_19 AC 39 ms
52,400 KB
testcase_20 AC 39 ms
53,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
xyxy = [list(map(int, input().split())) for _ in range(N)]
d = dict()
d[(2, 8)] = 'A'
d[(3, 9)] = 'B'
d[(7, 9)] = 'C'
for x1, y1, x2, y2 in xyxy:
    if (x1, y1) in d:
        d[(x2, y2)] = d[(x1, y1)]
        d[(x1, y1)] = ''
if (5, 8) not in d or (4, 8) not in d or (6, 8) not in d:
    print("NO")
elif d[(5, 8)]=='A' and d[(4, 8)]=='B' and d[(6, 8)]=='C':
    print("YES")
else:
    print("NO")
0