結果

問題 No.199 星を描こう
ユーザー H3PO4H3PO4
提出日時 2020-05-26 14:45:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 214 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 124,688 KB
最終ジャッジ日時 2024-12-12 05:04:08
合計ジャッジ時間 37,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,151 ms
61,344 KB
testcase_02 AC 1,097 ms
61,220 KB
testcase_03 AC 1,096 ms
61,344 KB
testcase_04 AC 1,094 ms
61,484 KB
testcase_05 AC 1,092 ms
61,392 KB
testcase_06 AC 1,094 ms
61,864 KB
testcase_07 AC 1,104 ms
60,836 KB
testcase_08 AC 1,082 ms
60,840 KB
testcase_09 AC 1,100 ms
60,828 KB
testcase_10 AC 1,105 ms
61,352 KB
testcase_11 AC 1,090 ms
61,480 KB
testcase_12 AC 1,092 ms
61,348 KB
testcase_13 AC 1,097 ms
61,472 KB
testcase_14 AC 1,095 ms
61,004 KB
testcase_15 AC 1,085 ms
60,968 KB
testcase_16 AC 1,114 ms
60,972 KB
testcase_17 AC 1,103 ms
61,468 KB
testcase_18 AC 1,108 ms
61,220 KB
testcase_19 AC 1,082 ms
61,224 KB
testcase_20 AC 1,106 ms
60,840 KB
testcase_21 AC 1,105 ms
60,968 KB
testcase_22 AC 1,094 ms
60,964 KB
testcase_23 AC 1,104 ms
61,092 KB
testcase_24 AC 1,108 ms
60,836 KB
testcase_25 AC 1,090 ms
61,476 KB
testcase_26 AC 1,085 ms
60,968 KB
testcase_27 AC 1,100 ms
124,688 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