結果

問題 No.1175 Simultaneous Equations
ユーザー tentententen
提出日時 2020-08-24 22:03:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 76,640 KB
実行使用メモリ 55,100 KB
最終ジャッジ日時 2024-11-06 10:47:24
合計ジャッジ時間 5,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
54,884 KB
testcase_01 AC 161 ms
54,868 KB
testcase_02 AC 163 ms
54,792 KB
testcase_03 AC 164 ms
54,692 KB
testcase_04 AC 161 ms
54,916 KB
testcase_05 AC 161 ms
54,944 KB
testcase_06 AC 164 ms
55,068 KB
testcase_07 AC 164 ms
54,908 KB
testcase_08 AC 164 ms
54,740 KB
testcase_09 AC 169 ms
54,920 KB
testcase_10 AC 166 ms
54,960 KB
testcase_11 AC 163 ms
55,100 KB
testcase_12 AC 169 ms
55,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	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();
    	double x = (c * e - b * f) / (a * e - b * d);
    	double y = (c * d - a * f) / (b * d - a * e);
    	System.out.println(x + " " + y);
    }
}

0