結果

問題 No.2765 Cross Product
ユーザー あさくちあさくち
提出日時 2024-05-31 21:23:02
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 15,196 ms
コンパイル使用メモリ 402,852 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-31 21:23:18
合計ジャッジ時間 14,800 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,944 KB
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 #

use proconio::input;

// #[proconio::fastout]
fn main() {
    input! {
        a_x: isize,
        a_y: isize,
        a_z: isize,
        b_x: isize,
        b_y: isize,
        b_z: isize,
    }

    println!(
        "{} {} {}",
        a_y * b_z - a_z * b_y,
        a_z * b_x - a_y * b_z,
        a_x * b_y - a_y * b_x
    );
}
0