結果

問題 No.199 星を描こう
ユーザー H3PO4H3PO4
提出日時 2020-05-26 14:42:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,122 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,224 KB
最終ジャッジ日時 2024-10-13 02:42:13
合計ジャッジ時間 6,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 974 ms
60,440 KB
testcase_01 AC 986 ms
59,936 KB
testcase_02 AC 961 ms
61,200 KB
testcase_03 AC 985 ms
60,444 KB
testcase_04 AC 980 ms
60,444 KB
testcase_05 AC 969 ms
60,576 KB
testcase_06 AC 959 ms
60,320 KB
testcase_07 AC 959 ms
61,224 KB
testcase_08 AC 983 ms
61,212 KB
testcase_09 AC 990 ms
59,928 KB
testcase_10 AC 977 ms
61,220 KB
testcase_11 AC 976 ms
60,572 KB
testcase_12 AC 975 ms
59,928 KB
testcase_13 AC 966 ms
61,080 KB
testcase_14 AC 1,000 ms
61,212 KB
testcase_15 AC 969 ms
61,092 KB
testcase_16 AC 971 ms
60,576 KB
testcase_17 AC 964 ms
61,208 KB
testcase_18 AC 960 ms
61,200 KB
testcase_19 AC 1,004 ms
61,088 KB
testcase_20 AC 987 ms
60,568 KB
testcase_21 AC 972 ms
60,308 KB
testcase_22 AC 996 ms
59,936 KB
testcase_23 AC 963 ms
60,324 KB
testcase_24 AC 971 ms
59,808 KB
testcase_25 AC 1,122 ms
60,572 KB
testcase_26 AC 962 ms
61,216 KB
testcase_27 AC 975 ms
61,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.spatial import ConvexHull, qhull

P = [tuple(map(int, input().split())) for _ in range(5)]
try:
	x = ConvexHull(P,qhull_options='QR0').simplices
	print('YES' if len(x) == 5 else 'NO')
except qhull.QhullError:
  	print('NO')
0