結果

問題 No.622 点と三角柱の内外判定
ユーザー RyutoRyuto
提出日時 2017-12-22 21:21:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,968 KB
最終ジャッジ日時 2024-05-10 03:03:10
合計ジャッジ時間 16,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
44,452 KB
testcase_01 WA -
testcase_02 AC 454 ms
44,832 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 459 ms
44,700 KB
testcase_06 AC 453 ms
44,576 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 460 ms
44,712 KB
testcase_10 AC 461 ms
44,328 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 456 ms
44,704 KB
testcase_15 WA -
testcase_16 AC 457 ms
44,584 KB
testcase_17 AC 459 ms
44,584 KB
testcase_18 AC 474 ms
44,712 KB
testcase_19 AC 459 ms
44,568 KB
testcase_20 AC 463 ms
44,836 KB
testcase_21 AC 454 ms
44,584 KB
testcase_22 AC 469 ms
44,964 KB
testcase_23 AC 458 ms
44,704 KB
testcase_24 AC 461 ms
44,576 KB
testcase_25 AC 458 ms
44,576 KB
testcase_26 AC 468 ms
44,964 KB
testcase_27 AC 463 ms
44,576 KB
testcase_28 AC 464 ms
44,444 KB
testcase_29 AC 458 ms
44,708 KB
testcase_30 AC 464 ms
44,592 KB
testcase_31 AC 454 ms
44,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

import numpy as np

A = np.array([int(x) for x in input().split()])
B = np.array([int(x) for x in input().split()])
C = np.array([int(x) for x in input().split()])
D = np.array([int(x) for x in input().split()])

AB = B-A
AC = C-A
AD = D-A

Z = np.cross(AB, AC)
M = np.matrix([AB, AC, Z]).I

Co = AD * M

if Co[0, 0] <= 1 and Co[0, 1] <= 1:
    print('YES')
else:
    print('NO')
0