結果

問題 No.2765 Cross Product
ユーザー VvyLwVvyLw
提出日時 2024-06-01 03:19:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,636 KB
最終ジャッジ日時 2024-06-01 03:19:38
合計ジャッジ時間 17,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,412 KB
testcase_01 AC 535 ms
44,044 KB
testcase_02 AC 552 ms
44,284 KB
testcase_03 AC 525 ms
44,424 KB
testcase_04 AC 562 ms
44,548 KB
testcase_05 AC 530 ms
44,156 KB
testcase_06 AC 579 ms
44,152 KB
testcase_07 AC 543 ms
44,304 KB
testcase_08 AC 550 ms
44,292 KB
testcase_09 AC 525 ms
44,180 KB
testcase_10 AC 521 ms
44,152 KB
testcase_11 AC 557 ms
44,044 KB
testcase_12 AC 532 ms
44,308 KB
testcase_13 AC 544 ms
43,920 KB
testcase_14 AC 529 ms
44,152 KB
testcase_15 AC 551 ms
44,164 KB
testcase_16 AC 526 ms
44,304 KB
testcase_17 AC 528 ms
44,040 KB
testcase_18 AC 561 ms
44,024 KB
testcase_19 AC 525 ms
44,296 KB
testcase_20 AC 536 ms
44,552 KB
testcase_21 AC 529 ms
44,636 KB
testcase_22 AC 558 ms
44,296 KB
testcase_23 AC 525 ms
44,180 KB
testcase_24 AC 531 ms
44,292 KB
testcase_25 AC 558 ms
44,412 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