結果

問題 No.622 点と三角柱の内外判定
ユーザー hiragnhiragn
提出日時 2022-11-01 04:23:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 481 ms / 1,500 ms
コード長 643 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,812 KB
最終ジャッジ日時 2024-07-16 01:13:03
合計ジャッジ時間 16,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 475 ms
46,680 KB
testcase_01 AC 470 ms
46,304 KB
testcase_02 AC 475 ms
44,340 KB
testcase_03 AC 469 ms
44,440 KB
testcase_04 AC 466 ms
45,064 KB
testcase_05 AC 462 ms
44,600 KB
testcase_06 AC 467 ms
44,968 KB
testcase_07 AC 470 ms
44,712 KB
testcase_08 AC 468 ms
44,340 KB
testcase_09 AC 466 ms
44,468 KB
testcase_10 AC 469 ms
44,592 KB
testcase_11 AC 473 ms
44,972 KB
testcase_12 AC 471 ms
46,300 KB
testcase_13 AC 469 ms
44,968 KB
testcase_14 AC 481 ms
44,968 KB
testcase_15 AC 473 ms
44,976 KB
testcase_16 AC 475 ms
44,852 KB
testcase_17 AC 462 ms
44,720 KB
testcase_18 AC 475 ms
46,684 KB
testcase_19 AC 463 ms
44,596 KB
testcase_20 AC 466 ms
45,104 KB
testcase_21 AC 471 ms
44,460 KB
testcase_22 AC 472 ms
46,812 KB
testcase_23 AC 468 ms
44,464 KB
testcase_24 AC 470 ms
44,848 KB
testcase_25 AC 468 ms
44,564 KB
testcase_26 AC 463 ms
45,100 KB
testcase_27 AC 473 ms
44,968 KB
testcase_28 AC 469 ms
44,464 KB
testcase_29 AC 465 ms
44,976 KB
testcase_30 AC 469 ms
46,452 KB
testcase_31 AC 476 ms
44,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def main():
    a = np.array(list(map(int, input().split())))  # 以下,Aを原点とする
    b = np.array(list(map(int, input().split()))) - a
    c = np.array(list(map(int, input().split()))) - a
    d = np.array(list(map(int, input().split()))) - a

    n = np.cross(b, c)  # 平面ABCの法線ベクトル
    mat = np.matrix([b, c, n]).T  # 基底の変換行列(e1, e2, e3) -> (b, c, n)
    lst = np.dot(np.linalg.inv(mat), d)  # dを基底(b, c, n)で表したときの係数
    x, y = lst[0, 0], lst[0, 1]
    print("YES" if x >= 0 and y >= 0 and x + y <= 1 else "NO")


if __name__ == "__main__":
    main()
0