Recent Posts
Notice
No Rules Rules
수학은 비대면강의입니다 (feat. 백준, 19532번) 본문
728x90
반응형
수학은 비대면강의입니다
https://www.acmicpc.net/problem/19532
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int a, b, c, d, e, f, x, y;
cin >> a >> b >> c >> d >> e >> f;
y = (c * d - f * a) / (b * d - a * e);
x = (c * e - f * b) / (a * e - b * d);
cout << x << ' ' << y;
return 0;
}
// *&)*@*
반응형
단순한 수학 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
Four Squares (feat. 백준, 17626번) (0) | 2023.03.20 |
---|---|
수학은 체육과목 입니다 (feat. 백준, 15894번) (0) | 2023.03.20 |
Moocast (feat. 백준, 14167번) (0) | 2023.03.16 |
최소공배수 (feat. 백준, 13241번) (0) | 2023.03.16 |
행성 연결 (feat. 백준, 16398번) (0) | 2023.03.15 |
Comments