結果

問題 No.1175 Simultaneous Equations
ユーザー ks2mks2m
提出日時 2020-08-21 21:35:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 75,752 KB
実行使用メモリ 55,080 KB
最終ジャッジ日時 2024-10-15 05:19:52
合計ジャッジ時間 5,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
54,556 KB
testcase_01 AC 166 ms
54,712 KB
testcase_02 AC 167 ms
54,892 KB
testcase_03 AC 168 ms
54,976 KB
testcase_04 AC 168 ms
55,080 KB
testcase_05 AC 166 ms
54,972 KB
testcase_06 AC 155 ms
54,320 KB
testcase_07 AC 169 ms
54,956 KB
testcase_08 AC 166 ms
54,940 KB
testcase_09 AC 166 ms
54,888 KB
testcase_10 AC 168 ms
54,808 KB
testcase_11 AC 166 ms
54,896 KB
testcase_12 AC 165 ms
54,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		double a = sc.nextInt();
		double b = sc.nextInt();
		double c = sc.nextInt();
		double d = sc.nextInt();
		double e = sc.nextInt();
		double f = sc.nextInt();
		sc.close();

		double q = b / e;
		double x1 = a - d * q;
		double x2 = c - f * q;
		double x = x2 / x1;

		double p = a / d;
		double y1 = b - e * p;
		double y2 = c - f * p;
		double y = y2 / y1;

		System.out.println(x + " " + y);
	}
}
0