結果

問題 No.199 星を描こう
ユーザー maspymaspy
提出日時 2020-03-05 08:37:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-10-14 00:45:32
合計ジャッジ時間 15,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 470 ms
44,068 KB
testcase_01 AC 468 ms
44,316 KB
testcase_02 AC 467 ms
44,324 KB
testcase_03 AC 475 ms
44,200 KB
testcase_04 AC 484 ms
44,072 KB
testcase_05 AC 490 ms
44,196 KB
testcase_06 AC 478 ms
44,200 KB
testcase_07 AC 481 ms
44,332 KB
testcase_08 AC 473 ms
44,100 KB
testcase_09 AC 472 ms
44,068 KB
testcase_10 AC 477 ms
44,324 KB
testcase_11 AC 471 ms
44,072 KB
testcase_12 AC 466 ms
44,204 KB
testcase_13 AC 457 ms
44,452 KB
testcase_14 AC 471 ms
44,196 KB
testcase_15 AC 462 ms
44,200 KB
testcase_16 AC 470 ms
44,456 KB
testcase_17 AC 466 ms
44,208 KB
testcase_18 AC 481 ms
44,456 KB
testcase_19 AC 459 ms
44,332 KB
testcase_20 AC 482 ms
44,200 KB
testcase_21 AC 491 ms
44,072 KB
testcase_22 AC 481 ms
44,068 KB
testcase_23 AC 478 ms
44,204 KB
testcase_24 AC 479 ms
44,068 KB
testcase_25 AC 470 ms
44,448 KB
testcase_26 AC 477 ms
44,196 KB
testcase_27 AC 466 ms
44,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools

# %%
import numpy as np

# %%
XY = np.array(read().split(), np.int64)
X = XY[::2]
Y = XY[1::2]

# %%


def is_edge_of_convexhull(i, j):
    b = X[i] - X[j]
    a = Y[j] - Y[i]
    c = a * X[i] + b * Y[i]
    return np.count_nonzero(a * X + b * Y - c > 0) == 3


# %%
n = 0
it = itertools.product(range(5), repeat=2)
n = sum(is_edge_of_convexhull(i, j) for i, j in it if i != j)
print('YES' if n == 5 else 'NO')
0