結果
問題 | No.622 点と三角柱の内外判定 |
ユーザー | Ryuto |
提出日時 | 2017-12-22 22:00:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,418 bytes |
コンパイル時間 | 316 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 52,992 KB |
最終ジャッジ日時 | 2024-05-10 03:07:02 |
合計ジャッジ時間 | 2,537 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 38 ms
52,992 KB |
testcase_03 | AC | 38 ms
52,864 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 38 ms
52,224 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 37 ms
52,608 KB |
testcase_17 | AC | 38 ms
52,736 KB |
testcase_18 | AC | 38 ms
52,352 KB |
testcase_19 | AC | 38 ms
52,352 KB |
testcase_20 | AC | 38 ms
52,352 KB |
testcase_21 | AC | 38 ms
51,968 KB |
testcase_22 | AC | 38 ms
52,608 KB |
testcase_23 | AC | 39 ms
52,480 KB |
testcase_24 | AC | 38 ms
52,736 KB |
testcase_25 | AC | 39 ms
52,864 KB |
testcase_26 | AC | 40 ms
52,352 KB |
testcase_27 | AC | 39 ms
52,608 KB |
testcase_28 | AC | 38 ms
52,480 KB |
testcase_29 | AC | 38 ms
52,768 KB |
testcase_30 | AC | 37 ms
52,096 KB |
testcase_31 | AC | 37 ms
52,352 KB |
ソースコード
#!/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]]) if Cx <= 1 and Cy <= 1: print('YES') else: print('NO')