結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
44,588 KB
testcase_01 WA -
testcase_02 AC 455 ms
44,708 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 466 ms
44,588 KB
testcase_06 AC 471 ms
44,844 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 462 ms
44,716 KB
testcase_10 AC 460 ms
44,328 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 459 ms
44,332 KB
testcase_15 WA -
testcase_16 AC 455 ms
44,336 KB
testcase_17 AC 463 ms
44,452 KB
testcase_18 AC 462 ms
44,716 KB
testcase_19 AC 467 ms
44,588 KB
testcase_20 AC 462 ms
44,324 KB
testcase_21 AC 473 ms
44,964 KB
testcase_22 AC 455 ms
44,460 KB
testcase_23 AC 463 ms
44,584 KB
testcase_24 AC 468 ms
44,196 KB
testcase_25 AC 484 ms
44,452 KB
testcase_26 AC 462 ms
44,584 KB
testcase_27 AC 470 ms
44,556 KB
testcase_28 AC 471 ms
44,592 KB
testcase_29 AC 498 ms
44,456 KB
testcase_30 AC 460 ms
44,716 KB
testcase_31 AC 471 ms
44,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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