結果

問題 No.635 自然門松列
ユーザー titiatitia
提出日時 2024-08-18 02:29:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,576 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-08-18 02:30:02
合計ジャッジ時間 2,521 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

for i in range(N):
    x1,x2,x3,y1,y2,y3=map(int,input().split())

    if y1==y2 and x1==x2:
        print("NO")
        continue

    if y1==y3 and x1==x3:
        print("NO")
        continue

    if y2==y3 and x2==x3:
        print("NO")
        continue

    A=[]# x1<x2
    B=[]# x2<x1
    C=[]# x1<x3
    D=[]# x3<x1

    # x1+ay1<x2+ay2

    if y1==y2:
        if x1<x2:
            A=[0,10**18]
        elif x2<x1:
            A=[0,10**18]

    elif y1<y2:
        a=(x2-x1)/(y1-y2)

        if a<=0:
            A=[0,10**18]
        else:
            A=[a,10**18]
            B=[0,a]
    else:
        a=(x2-x1)/(y1-y2)

        if a<=0:
            B=[0,10**18]
        else:
            B=[a,10**18]
            A=[0,a]

    if y2==y3:
        if x3<x2:
            C=[0,10**18]
        elif x2<x3:
            D=[0,10**18]

    elif y3<y2:
        a=(x2-x3)/(y3-y2)

        if a<=0:
            C=[0,10**18]
        else:
            C=[a,10**18]
            D=[0,a]
    else:
        a=(x2-x3)/(y3-y2)

        if a<=0:
            D=[0,10**18]
        else:
            D=[a,10**18]
            C=[0,a]

    if A!=[] and C!=[]:
        a,b=A
        c,d=C

        if a>c:
            a,b=C
            c,d=A

        if b>=c:
            print("YES")
            continue

    if B!=[] and D!=[]:
        a,b=B
        c,d=D

        if a>c:
            a,b=D
            c,d=B

        if b>=c:
            print("YES")
            continue

    print("NO")
        

    

    
            

    

    
0