結果

問題 No.2765 Cross Product
ユーザー naut3naut3
提出日時 2024-06-01 01:17:53
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 26,743 ms
コンパイル使用メモリ 383,068 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-21 03:06:37
合計ジャッジ時間 17,243 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case, unused_imports)]
use proconio::{fastout, input, marker::*};

#[fastout]
fn main() {
    input! {
        Ax: isize, Ay: isize, Az: isize,
        Bx: isize, By: isize, Bz: isize,
    }

    println!(
        "{} {} {}",
        Ay * Bz - Az * By,
        Az * Bx - Ax * Bz,
        Ax * By - Ay * Bx
    );
}
0