結果
問題 | No.2765 Cross Product |
ユーザー | InTheBloom |
提出日時 | 2024-05-31 21:21:59 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 422 bytes |
コンパイル時間 | 2,475 ms |
コンパイル使用メモリ | 87,104 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-20 22:11:29 |
合計ジャッジ時間 | 1,665 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
#include <iostream> #include <vector> using namespace std; using ll = long long; constexpr int iINF = 1'000'000'000; constexpr ll llINF = 1'000'000'000'000'000'000; int main () { vector<int> A(3), B(3); for (int i = 0; i < 3; i++) cin >> A[i]; for (int i = 0; i < 3; i++) cin >> B[i]; cout << A[1] * B[2] - A[2] * B[1] << " " << A[2] * B[0] - A[0] * B[2] << " " << A[0] * B[1] - A[1] * B[0] << "\n"; }