結果

問題 No.622 点と三角柱の内外判定
ユーザー RyutoRyuto
提出日時 2017-12-22 22:05:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,497 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 54,676 KB
最終ジャッジ日時 2024-05-10 03:07:09
合計ジャッジ時間 2,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 39 ms
52,864 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
53,120 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 39 ms
52,480 KB
testcase_15 WA -
testcase_16 AC 38 ms
52,736 KB
testcase_17 AC 39 ms
52,748 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 39 ms
52,736 KB
testcase_20 AC 39 ms
52,608 KB
testcase_21 AC 39 ms
52,096 KB
testcase_22 AC 38 ms
52,608 KB
testcase_23 AC 39 ms
52,992 KB
testcase_24 AC 39 ms
52,480 KB
testcase_25 AC 39 ms
52,736 KB
testcase_26 AC 39 ms
53,120 KB
testcase_27 AC 39 ms
52,940 KB
testcase_28 AC 39 ms
52,096 KB
testcase_29 AC 39 ms
52,992 KB
testcase_30 AC 39 ms
52,352 KB
testcase_31 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python


def cross(A, B):
    X = A[1]*B[2] - A[2]*B[1]
    Y = A[2]*B[0] - A[0]*B[2]
    Z = A[0]*B[1] - A[1]*B[0]
    return [X, Y, Z]


def inverse(A):
    det = A[0][0]*A[1][1]*A[2][2] + A[0][1]*A[1][2]*A[2][0]
    det += A[0][2]*A[1][0]*A[2][1] - A[0][0]*A[1][2]*A[2][1]
    det += - A[0][2]*A[1][1]*A[2][0] - A[0][1]*A[1][0]*A[2][2]
    A11 = (-1)**2 * (A[1][1]*A[2][2] - A[1][2]*A[2][1]) / det
    A12 = (-1)**3 * (A[1][0]*A[2][2] - A[1][2]*A[2][0]) / det
    A13 = (-1)**4 * (A[1][0]*A[2][1] - A[1][1]*A[2][0]) / det
    A21 = (-1)**3 * (A[0][1]*A[2][2] - A[0][2]*A[2][1]) / det
    A22 = (-1)**4 * (A[0][0]*A[2][2] - A[0][2]*A[2][0]) / det
    A23 = (-1)**5 * (A[0][0]*A[2][1] - A[0][1]*A[2][0]) / det
    A31 = (-1)**4 * (A[0][1]*A[1][2] - A[0][2]*A[1][1]) / det
    A32 = (-1)**5 * (A[0][0]*A[1][2] - A[0][2]*A[1][0]) / det
    A33 = (-1)**6 * (A[0][0]*A[1][1] - A[0][1]*A[1][0]) / det
    return [[A11, A21, A31], [A12, A22, A32], [A13, A23, A33]]


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

AB = [b - a for (a, b) in zip(A, B)]
AC = [c - a for (a, c) in zip(A, C)]
AD = [d - a for (a, d) in zip(A, D)]

Z = cross(AB, AC)
M = inverse([AB, AC, Z])

Cx = sum([AD[0]*x for x in M[0]])
Cy = sum([AD[0]*y for y in M[1]])

Co = [AD[0]*x + AD[1]*y + AD[2]*z for (x, y, z) in zip(M[0], M[1], M[2])]

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