結果
問題 | No.1175 Simultaneous Equations |
ユーザー | Apass |
提出日時 | 2020-08-21 21:49:55 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 11 |
ソースコード
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); } }