結果

問題 No.2765 Cross Product
ユーザー Y.Y.Y.Y.
提出日時 2024-05-23 03:02:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 490 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,852 KB
最終ジャッジ日時 2024-05-31 20:51:25
合計ジャッジ時間 15,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
43,536 KB
testcase_01 AC 490 ms
43,656 KB
testcase_02 AC 468 ms
43,652 KB
testcase_03 AC 489 ms
43,668 KB
testcase_04 AC 469 ms
43,672 KB
testcase_05 AC 480 ms
43,412 KB
testcase_06 AC 471 ms
43,408 KB
testcase_07 AC 469 ms
43,528 KB
testcase_08 AC 460 ms
43,656 KB
testcase_09 AC 454 ms
43,796 KB
testcase_10 AC 452 ms
43,528 KB
testcase_11 AC 456 ms
43,664 KB
testcase_12 AC 468 ms
43,388 KB
testcase_13 AC 467 ms
43,668 KB
testcase_14 AC 470 ms
43,788 KB
testcase_15 AC 458 ms
43,660 KB
testcase_16 AC 472 ms
43,400 KB
testcase_17 AC 477 ms
43,528 KB
testcase_18 AC 478 ms
43,400 KB
testcase_19 AC 476 ms
43,852 KB
testcase_20 AC 483 ms
43,400 KB
testcase_21 AC 461 ms
43,388 KB
testcase_22 AC 468 ms
43,532 KB
testcase_23 AC 467 ms
43,536 KB
testcase_24 AC 473 ms
43,668 KB
testcase_25 AC 460 ms
43,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

A = list(map(int, input().split()))
B = list(map(int, input().split()))

C = np.cross(A,B)

print(' '.join(map(str, C.tolist())))
0