結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 956 ms
61,344 KB
testcase_01 AC 983 ms
61,088 KB
testcase_02 AC 992 ms
61,092 KB
testcase_03 AC 962 ms
60,836 KB
testcase_04 AC 963 ms
61,348 KB
testcase_05 AC 958 ms
61,352 KB
testcase_06 AC 975 ms
60,700 KB
testcase_07 AC 971 ms
60,960 KB
testcase_08 AC 960 ms
60,840 KB
testcase_09 AC 956 ms
60,832 KB
testcase_10 AC 959 ms
60,708 KB
testcase_11 AC 955 ms
61,096 KB
testcase_12 AC 973 ms
61,352 KB
testcase_13 AC 972 ms
60,836 KB
testcase_14 AC 959 ms
61,092 KB
testcase_15 AC 1,001 ms
61,476 KB
testcase_16 AC 979 ms
61,088 KB
testcase_17 AC 990 ms
60,932 KB
testcase_18 AC 987 ms
60,832 KB
testcase_19 AC 974 ms
60,836 KB
testcase_20 AC 975 ms
61,100 KB
testcase_21 AC 1,010 ms
60,832 KB
testcase_22 AC 985 ms
60,968 KB
testcase_23 AC 966 ms
61,220 KB
testcase_24 AC 966 ms
61,476 KB
testcase_25 AC 968 ms
61,224 KB
testcase_26 AC 966 ms
60,836 KB
testcase_27 AC 981 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).simplices
	print('YES' if len(x) == 5 else 'NO')
except qhull.QhullError:
  	print('NO')
0