結果

問題 No.199 星を描こう
ユーザー n_knuun_knuu
提出日時 2019-05-06 22:25:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,224 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 61,476 KB
最終ジャッジ日時 2024-12-15 10:02:31
合計ジャッジ時間 33,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,169 ms
61,340 KB
testcase_01 AC 1,224 ms
61,336 KB
testcase_02 AC 937 ms
60,828 KB
testcase_03 AC 927 ms
61,212 KB
testcase_04 AC 936 ms
61,352 KB
testcase_05 AC 925 ms
61,208 KB
testcase_06 AC 954 ms
61,212 KB
testcase_07 AC 937 ms
60,824 KB
testcase_08 AC 929 ms
61,464 KB
testcase_09 AC 933 ms
61,240 KB
testcase_10 AC 938 ms
61,084 KB
testcase_11 AC 936 ms
61,344 KB
testcase_12 AC 951 ms
61,080 KB
testcase_13 AC 957 ms
60,836 KB
testcase_14 AC 942 ms
61,464 KB
testcase_15 AC 934 ms
61,204 KB
testcase_16 AC 948 ms
61,216 KB
testcase_17 AC 969 ms
61,476 KB
testcase_18 AC 938 ms
61,336 KB
testcase_19 AC 966 ms
60,824 KB
testcase_20 AC 935 ms
61,088 KB
testcase_21 AC 932 ms
61,248 KB
testcase_22 AC 932 ms
61,080 KB
testcase_23 AC 942 ms
61,336 KB
testcase_24 AC 918 ms
61,204 KB
testcase_25 AC 949 ms
61,336 KB
testcase_26 AC 968 ms
61,080 KB
testcase_27 AC 956 ms
61,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.spatial import ConvexHull
from scipy.spatial.qhull import QhullError

points = []
for _ in range(5):
    x, y = map(int, input().split())
    points.append([x, y])
points = np.asarray(points)
try:
    hull = ConvexHull(points)
except QhullError:
    print("NO")
    quit()

print("YES" if hull.nsimplex == 5 else "NO")
0