結果

問題 No.1175 Simultaneous Equations
ユーザー ApassApass
提出日時 2020-08-21 21:49:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 3,674 ms
コンパイル使用メモリ 75,892 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-10-15 05:32:34
合計ジャッジ時間 5,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
38,152 KB
testcase_01 AC 84 ms
38,204 KB
testcase_02 AC 86 ms
38,292 KB
testcase_03 AC 90 ms
40,064 KB
testcase_04 AC 87 ms
38,724 KB
testcase_05 AC 87 ms
38,536 KB
testcase_06 AC 87 ms
38,240 KB
testcase_07 AC 84 ms
38,476 KB
testcase_08 AC 86 ms
38,384 KB
testcase_09 AC 84 ms
38,088 KB
testcase_10 AC 87 ms
39,800 KB
testcase_11 AC 88 ms
38,040 KB
testcase_12 AC 83 ms
38,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

// https://yukicoder.me/problems/no/1141
public class A_SimultaneousEquations {
    private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    private static final PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));
    private static StringTokenizer st;

    private static int readInt() throws IOException {
        while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine());
        return Integer.parseInt(st.nextToken());
    }

    public static void main(String[] args) throws IOException {
        solve();
        pw.close();
    }

    private static void solve() throws IOException {
        double a = readInt();
        double b = readInt();
        double c = readInt();
        double d = readInt();
        double e = readInt();
        double f = readInt();

        double x = (c * e - f * b) / (a * e - d * b);
        double y = (-c * d + f * a) / (a * e - d * b);

        pw.println(x + " " + y);
    }
}
0