結果

問題 No.1175 Simultaneous Equations
ユーザー yudedakoyudedako
提出日時 2020-08-22 09:57:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 11,282 ms
コンパイル使用メモリ 446,076 KB
実行使用メモリ 53,080 KB
最終ジャッジ日時 2024-10-15 06:49:34
合計ジャッジ時間 16,833 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
53,004 KB
testcase_01 AC 347 ms
52,916 KB
testcase_02 AC 338 ms
52,836 KB
testcase_03 AC 339 ms
53,068 KB
testcase_04 AC 356 ms
52,776 KB
testcase_05 AC 350 ms
53,080 KB
testcase_06 AC 347 ms
52,896 KB
testcase_07 AC 346 ms
52,836 KB
testcase_08 AC 339 ms
52,808 KB
testcase_09 AC 337 ms
53,032 KB
testcase_10 AC 340 ms
53,040 KB
testcase_11 AC 345 ms
52,828 KB
testcase_12 AC 348 ms
53,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.min

const val MOD = 1000000007L
operator fun <T> List<T>.component6(): T {
    return this[5]
}

fun main() {
    val (a, b, c, d, e, f) = readLine()!!.trim().split(' ').map(String::toDouble)
    val x = (c - b / e * f) / (a - b / e * d)
    val y = (c - a / d * f) / (b - a / d * e)
    println(
        "%.10f %.10f".format(x, y)
    )
}
0