結果

問題 No.2765 Cross Product
ユーザー ks2mks2m
提出日時 2024-05-31 22:00:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 3,489 ms
コンパイル使用メモリ 83,888 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-05-31 22:00:45
合計ジャッジ時間 7,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,844 KB
testcase_01 AC 107 ms
52,736 KB
testcase_02 AC 127 ms
53,896 KB
testcase_03 AC 147 ms
54,032 KB
testcase_04 AC 109 ms
53,632 KB
testcase_05 AC 120 ms
54,180 KB
testcase_06 AC 118 ms
54,048 KB
testcase_07 AC 127 ms
54,008 KB
testcase_08 AC 117 ms
53,892 KB
testcase_09 AC 119 ms
54,024 KB
testcase_10 AC 115 ms
54,116 KB
testcase_11 AC 118 ms
53,876 KB
testcase_12 AC 122 ms
54,096 KB
testcase_13 AC 125 ms
53,972 KB
testcase_14 AC 119 ms
53,880 KB
testcase_15 AC 115 ms
53,408 KB
testcase_16 AC 118 ms
53,888 KB
testcase_17 AC 124 ms
54,000 KB
testcase_18 AC 135 ms
54,140 KB
testcase_19 AC 107 ms
52,752 KB
testcase_20 AC 119 ms
54,044 KB
testcase_21 AC 121 ms
54,300 KB
testcase_22 AC 109 ms
52,848 KB
testcase_23 AC 106 ms
53,108 KB
testcase_24 AC 125 ms
54,132 KB
testcase_25 AC 122 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int[] a = new int[6];
		for (int i = 0; i < 3; i++) {
			a[i] = sc.nextInt();
			a[i + 3] = a[i];
		}
		int[] b = new int[6];
		for (int i = 0; i < 3; i++) {
			b[i] = sc.nextInt();
			b[i + 3] = b[i];
		}
		sc.close();

		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < 3; i++) {
			int c = a[i + 1] * b[i + 2] - a[i + 2] * b[i + 1];
			sb.append(c).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0