結果

問題 No.199 星を描こう
ユーザー convexineqconvexineq
提出日時 2020-12-18 18:53:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 53,776 KB
最終ジャッジ日時 2024-09-21 09:14:23
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,344 KB
testcase_01 AC 41 ms
52,752 KB
testcase_02 AC 42 ms
53,240 KB
testcase_03 AC 39 ms
53,216 KB
testcase_04 AC 39 ms
53,564 KB
testcase_05 AC 38 ms
52,404 KB
testcase_06 AC 38 ms
53,504 KB
testcase_07 AC 38 ms
53,316 KB
testcase_08 AC 39 ms
52,616 KB
testcase_09 AC 38 ms
53,240 KB
testcase_10 AC 39 ms
52,760 KB
testcase_11 AC 40 ms
53,204 KB
testcase_12 AC 38 ms
53,324 KB
testcase_13 AC 38 ms
52,612 KB
testcase_14 AC 38 ms
53,776 KB
testcase_15 AC 38 ms
53,256 KB
testcase_16 AC 39 ms
53,420 KB
testcase_17 AC 38 ms
53,420 KB
testcase_18 AC 40 ms
53,704 KB
testcase_19 AC 39 ms
53,220 KB
testcase_20 AC 38 ms
52,888 KB
testcase_21 AC 37 ms
52,824 KB
testcase_22 AC 38 ms
52,600 KB
testcase_23 AC 38 ms
53,696 KB
testcase_24 AC 38 ms
53,468 KB
testcase_25 AC 39 ms
53,684 KB
testcase_26 AC 38 ms
52,568 KB
testcase_27 AC 38 ms
52,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_opposit(p0,p1,p2,p3):
    x0,y0 = p0; x1,y1 = p1; x2,y2 = p2; x3,y3 = p3
    if ((x0-x1)*(y2-y0)+(y0-y1)*(x0-x2))*((x0-x1)*(y3-y0)+(y0-y1)*(x0-x3)) >= 0:
        return False
    else:
        return True

# 線分 p0--p1 と 線分 p2--p3 は交わるか?
# ただし一般の位置を仮定している
def is_crossed(p0,p1,p2,p3):
    return is_opposit(p0,p1,p2,p3) and is_opposit(p2,p3,p0,p1)

def is_star(a):
    for i in range(5):
        if not is_crossed(a[i],a[(i+2)%5],a[(i+1)%5],a[(i+3)%5]): return False
    return True

xy = [list(map(int,input().split())) for _ in range(5)]
from itertools import permutations
for a in permutations(xy):
    if is_star(a):
        print("YES")
        exit()
print("NO")
0