結果

問題 No.2765 Cross Product
ユーザー n_nan_na
提出日時 2024-05-31 23:33:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 52,476 KB
最終ジャッジ日時 2024-12-21 01:44:29
合計ジャッジ時間 2,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,748 KB
testcase_01 AC 45 ms
52,100 KB
testcase_02 AC 44 ms
51,988 KB
testcase_03 AC 44 ms
52,328 KB
testcase_04 AC 45 ms
51,724 KB
testcase_05 AC 44 ms
51,572 KB
testcase_06 AC 43 ms
51,680 KB
testcase_07 AC 42 ms
51,616 KB
testcase_08 AC 43 ms
51,792 KB
testcase_09 AC 43 ms
51,724 KB
testcase_10 AC 43 ms
51,636 KB
testcase_11 AC 46 ms
52,092 KB
testcase_12 AC 44 ms
52,476 KB
testcase_13 AC 42 ms
52,388 KB
testcase_14 AC 44 ms
51,976 KB
testcase_15 AC 43 ms
51,612 KB
testcase_16 AC 46 ms
51,612 KB
testcase_17 AC 43 ms
51,884 KB
testcase_18 AC 42 ms
51,752 KB
testcase_19 AC 43 ms
51,608 KB
testcase_20 AC 44 ms
51,820 KB
testcase_21 AC 46 ms
52,184 KB
testcase_22 AC 44 ms
51,420 KB
testcase_23 AC 43 ms
51,924 KB
testcase_24 AC 42 ms
51,964 KB
testcase_25 AC 45 ms
51,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ax,ay,az = map(int,input().split())
bx,by,bz = map(int,input().split())
print(ay*bz-az*by, az*bx-ax*bz, ax*by-ay*bx)
0