結果

問題 No.2765 Cross Product
ユーザー VvyLwVvyLw
提出日時 2024-06-01 03:19:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 742 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 80,808 KB
最終ジャッジ日時 2024-12-21 05:49:54
合計ジャッジ時間 17,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 742 ms
44,160 KB
testcase_01 AC 523 ms
43,928 KB
testcase_02 AC 532 ms
44,424 KB
testcase_03 AC 525 ms
43,924 KB
testcase_04 AC 523 ms
44,160 KB
testcase_05 AC 522 ms
44,292 KB
testcase_06 AC 524 ms
44,048 KB
testcase_07 AC 522 ms
43,904 KB
testcase_08 AC 524 ms
44,028 KB
testcase_09 AC 521 ms
44,032 KB
testcase_10 AC 516 ms
44,156 KB
testcase_11 AC 521 ms
43,776 KB
testcase_12 AC 520 ms
44,264 KB
testcase_13 AC 523 ms
43,772 KB
testcase_14 AC 519 ms
44,180 KB
testcase_15 AC 522 ms
43,908 KB
testcase_16 AC 519 ms
44,180 KB
testcase_17 AC 524 ms
44,184 KB
testcase_18 AC 518 ms
44,168 KB
testcase_19 AC 526 ms
44,164 KB
testcase_20 AC 524 ms
44,432 KB
testcase_21 AC 531 ms
44,296 KB
testcase_22 AC 525 ms
44,024 KB
testcase_23 AC 528 ms
43,768 KB
testcase_24 AC 522 ms
44,296 KB
testcase_25 AC 517 ms
80,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
a=np.array(list(map(int,input().split())))
b=np.array(list(map(int,input().split())))
print(*np.cross(a,b))
0