結果

問題 No.1175 Simultaneous Equations
ユーザー ああいいああいい
提出日時 2022-02-23 13:26:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 86,856 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2023-09-14 05:40:14
合計ジャッジ時間 2,207 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,092 KB
testcase_01 AC 74 ms
71,048 KB
testcase_02 AC 73 ms
71,064 KB
testcase_03 AC 78 ms
71,224 KB
testcase_04 AC 73 ms
71,204 KB
testcase_05 AC 78 ms
71,296 KB
testcase_06 AC 75 ms
71,080 KB
testcase_07 AC 76 ms
71,292 KB
testcase_08 AC 80 ms
71,052 KB
testcase_09 AC 79 ms
71,064 KB
testcase_10 AC 82 ms
71,160 KB
testcase_11 AC 77 ms
71,140 KB
testcase_12 AC 76 ms
70,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e,f = map(int,input().split())
delta = a * e - b * d
x = (e * c - b * f) / delta
y = (-d * c + a * f) / delta
print(x,y)
0