CF7C.Line

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A line on the plane is described by an equation Ax+By+C=0Ax+By+C=0 . You are to find any point on this line, whose coordinates are integer numbers from 51018-5·10^{18} to 510185·10^{18} inclusive, or to find out that such points do not exist.

题目描述

一条在平面上的线可以被表示为Ax+By+C=0Ax+By+C=0。你的任务是找到这条线上的任意一点,保证该点的横纵坐标数值均在51018-5*10^{18}510185*10^{18}之间。如果这样的点不存在,输出-1

感谢Macw提供翻译

输入格式

The first line contains three integers AA , BB and CC ( 2109<=A,B,C<=2109-2·10^{9}<=A,B,C<=2·10^{9} ) — corresponding coefficients of the line equation. It is guaranteed that A2+B2>0A^{2}+B^{2}>0 .

输入包含三个整数,A,B,CA, B, C。表示一条直线。

输出格式

If the required point exists, output its coordinates, otherwise output -1.

输出包含两个整数,表示任意一个符合要求的点的坐标。如果这样的点不存在,输出-1

输入输出样例

  • 输入#1

    2 5 3
    

    输出#1

    6 -3
    

说明/提示

输入数据保证A2+B2>0A^2 + B^2 > 0

请注意,本题的空间限制为256MB,是默认空间限制的两倍

首页