結果

問題 No.483 マッチ並べ
ユーザー nebukuro09nebukuro09
提出日時 2017-02-10 23:09:24
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 11,120 KB
最終ジャッジ日時 2024-06-09 07:40:36
合計ジャッジ時間 3,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
10,984 KB
testcase_01 AC 21 ms
10,728 KB
testcase_02 AC 20 ms
10,856 KB
testcase_03 AC 20 ms
10,728 KB
testcase_04 AC 20 ms
10,856 KB
testcase_05 AC 21 ms
10,856 KB
testcase_06 AC 22 ms
10,984 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 20 ms
10,984 KB
testcase_12 AC 20 ms
10,856 KB
testcase_13 AC 21 ms
10,980 KB
testcase_14 AC 21 ms
10,980 KB
testcase_15 WA -
testcase_16 AC 20 ms
10,980 KB
testcase_17 AC 20 ms
10,856 KB
testcase_18 AC 20 ms
10,856 KB
testcase_19 AC 20 ms
10,856 KB
testcase_20 AC 20 ms
11,008 KB
testcase_21 AC 20 ms
10,852 KB
testcase_22 AC 20 ms
10,852 KB
testcase_23 AC 21 ms
10,852 KB
testcase_24 AC 20 ms
10,852 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 19 ms
10,868 KB
testcase_28 AC 20 ms
10,744 KB
testcase_29 AC 20 ms
10,864 KB
testcase_30 AC 21 ms
10,988 KB
testcase_31 AC 19 ms
10,868 KB
testcase_32 AC 19 ms
11,000 KB
testcase_33 AC 20 ms
10,852 KB
testcase_34 AC 21 ms
10,856 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 22 ms
10,736 KB
testcase_40 AC 20 ms
10,860 KB
testcase_41 AC 19 ms
10,864 KB
testcase_42 AC 20 ms
10,868 KB
testcase_43 AC 22 ms
10,868 KB
testcase_44 AC 21 ms
10,984 KB
testcase_45 AC 22 ms
10,856 KB
testcase_46 AC 21 ms
10,852 KB
testcase_47 AC 21 ms
10,740 KB
testcase_48 AC 21 ms
10,992 KB
testcase_49 AC 21 ms
10,988 KB
testcase_50 AC 21 ms
11,000 KB
testcase_51 AC 21 ms
10,992 KB
testcase_52 AC 21 ms
10,996 KB
testcase_53 AC 22 ms
10,984 KB
testcase_54 AC 19 ms
10,984 KB
testcase_55 AC 20 ms
10,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
m = [map(int, raw_input().split()) for _ in xrange(n)]

B = {}
P = {}
for i in xrange(0, 111):
    for j in xrange(0, 111):
        B[(i, j)] = 0
        P[(i, j)] = 0

for a, b, c, d in m:
    if a == c:
        B[(a, b)] += 1
        B[(a-1, b)] += 1
    else:
        B[(a, b)] += 1
        B[(a, b-1)] += 1
    P[(a, b)] += 1
    P[(c, d)] += 1

for k, v in B.items():
    if v != 4:
        continue
    a, b = k
    if P[(a, b)] >= 3 or P[(a, b+1)] >= 3 or P[(a+1, b)] >= 3 or P[(a+1, b+1)] >= 3:
        print "NO"
        exit()
print "YES"
0