結果

問題 No.199 星を描こう
ユーザー n_knuun_knuu
提出日時 2019-05-06 22:21:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 250 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 121,516 KB
最終ジャッジ日時 2024-06-28 12:46:20
合計ジャッジ時間 34,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,743 ms
61,196 KB
testcase_01 AC 1,050 ms
61,068 KB
testcase_02 AC 1,041 ms
61,336 KB
testcase_03 AC 1,051 ms
60,944 KB
testcase_04 AC 1,033 ms
61,192 KB
testcase_05 AC 1,051 ms
61,460 KB
testcase_06 AC 1,049 ms
60,692 KB
testcase_07 AC 1,051 ms
61,328 KB
testcase_08 AC 1,035 ms
61,200 KB
testcase_09 AC 1,056 ms
61,964 KB
testcase_10 AC 1,036 ms
61,200 KB
testcase_11 AC 1,050 ms
60,684 KB
testcase_12 AC 1,038 ms
61,328 KB
testcase_13 AC 1,035 ms
60,672 KB
testcase_14 AC 1,036 ms
61,224 KB
testcase_15 AC 1,045 ms
61,072 KB
testcase_16 RE -
testcase_17 AC 1,037 ms
61,192 KB
testcase_18 AC 1,039 ms
61,068 KB
testcase_19 AC 1,035 ms
61,452 KB
testcase_20 AC 1,045 ms
60,696 KB
testcase_21 AC 1,041 ms
60,940 KB
testcase_22 AC 1,035 ms
61,960 KB
testcase_23 AC 1,036 ms
61,460 KB
testcase_24 AC 1,044 ms
61,068 KB
testcase_25 AC 1,030 ms
60,688 KB
testcase_26 AC 1,056 ms
61,336 KB
testcase_27 AC 1,039 ms
121,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.spatial import ConvexHull

points = []
for _ in range(5):
    x, y = map(int, input().split())
    points.append([x, y])
points = np.asarray(points)
hull = ConvexHull(points)
print("YES" if hull.nsimplex == 5 else "NO")
0