結果

問題 No.2765 Cross Product
ユーザー Sai bruhadeeswarSai bruhadeeswar
提出日時 2024-05-31 21:30:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 64,116 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-31 21:30:59
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

struct Vector3 {
    double x, y, z;
    
    Vector3(int x, int y, int z) : x(x), y(y), z(z) {}
};

Vector3 crossProduct(const Vector3& a, const Vector3& b) {
    double cx = a.y * b.z - a.z * b.y;
    double cy = a.z * b.x - a.x * b.z;
    double cz = a.x * b.y - a.y * b.x;
    return Vector3(cx, cy, cz);
}

int main() {
    int ax, ay, az, bx, by, bz;
    
    cin >> ax >> ay >> az;
    cin >> bx >> by >> bz;

    Vector3 a(ax, ay, az);
    Vector3 b(bx, by, bz);

    Vector3 result = crossProduct(a, b);
    cout <<  result.x << " " << result.y << " " << result.z  << endl;

    return 0;
}
0