QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#788740#6620. Linear Fractional TransformationLoxilanteAC ✓325ms3984kbC++202.2kb2024-11-27 18:06:362024-11-27 18:06:41

Judging History

你现在查看的是最新测评结果

  • [2024-11-27 18:06:41]
  • 评测
  • 测评结果:AC
  • 用时:325ms
  • 内存:3984kb
  • [2024-11-27 18:06:36]
  • 提交

answer

#define F_C
#include <bits/stdc++.h>
#define rep(i, l, r) for(int i = l; i < r; i++)
#define hrp(i, l, r) for(int i = l; i <= r; i++)
#define rev(i, r, l) for(int i = r; i >= l; i--)
#define int ll
using namespace std;
typedef long long ll;
typedef long double LD;
template<typename tn = int> tn next(void) { tn k; cin>>k; return k; }
#ifndef LOCAL
#define D(...) 0
#endif
const int U = 10;
struct Complex
{
	LD x, y;
    
	Complex(LD _x = 0.0, LD _y = 0.0) { x = _x; y = _y; }
	
    Complex operator + (const LD& e) const { return Complex(x, y+e); }
    Complex operator + (const Complex& e) const { return Complex(x+e.x, y+e.y); }
    Complex operator - (const LD& e) const { return Complex(x, y-e); }
    Complex operator - (const Complex& e) const { return Complex(x-e.x, y-e.y); }
    Complex operator * (const LD& e) const { return Complex(x*e, y*e); }
	Complex operator * (const Complex& e) const { return Complex(y*e.x+x*e.y, y*e.y-x*e.x); }
    Complex operator / (const LD& e) const { return Complex(x/e, y/e); }
	Complex operator / (const Complex& e) const
    {
        LD deno = -e.x*e.x-e.y*e.y;
		return Complex(y*e.x-x*e.y, -y*e.y-x*e.x)/deno;
	}
	bool operator == (const Complex& b) const { return x == b.x && y == b.y; }
} w[U], z[U];
istream& operator >> (istream& is, Complex& e)
{
    is>>e.y>>e.x;
    return is;
}
ostream& operator << (std::ostream& os, const Complex& e)
{
    os<<e.y<<' '<<e.x;
    return os;
}
signed main(void)
{
    #ifdef LOCAL
//	freopen("C:\\Users\\Loxil\\Desktop\\IN.txt", "r", stdin);
//	freopen("C:\\Users\\Loxil\\Desktop\\OUT.txt", "w", stdout);
    #endif
    
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout<<fixed<<setprecision(15);

    int T = next();
    while(T--)
    {
        hrp(i, 1, 3) cin>>z[i]>>w[i];
        cin>>z[0];

        bool cont = 0;
        hrp(i, 1, 3) if (z[0] == z[i]) cout<<w[i]<<endl, cont = 1;
        if (cont) continue;

        Complex A = (z[0]-z[1])/(z[0]-z[2])*(z[3]-z[2])/(z[3]-z[1])*(w[3]-w[1])/(w[3]-w[2]);
        cout<<(A*w[2]-w[1])/(A-1)<<endl;
    }
    
    return 0;
}
/*
2
-1 0 0 -1
0 1 -1 0
1 0 0 1
0 -1
-1 0 -1 0
0 1 0 -1
1 0 1 0
0 -1
 */

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3912kb

input:

2
-1 0 0 -1
0 1 -1 0
1 0 0 1
0 -1
-1 0 -1 0
0 1 0 -1
1 0 1 0
0 -1

output:

1.000000000000000 -0.000000000000000
-0.000000000000000 1.000000000000000

result:

ok 4 numbers

Test #2:

score: 0
Accepted
time: 268ms
memory: 3924kb

input:

100000
0 0 -1 1
1 1 1 0
1 0 1 -1
-1 0
-1 -1 -1 1
1 -1 1 -1
-1 0 1 0
-1 -1
-1 -1 0 -1
-1 1 -1 -1
0 -1 0 0
1 1
1 0 0 -1
0 0 0 0
-1 -1 1 0
1 1
-1 -1 0 -1
0 1 1 -1
1 0 -1 -1
1 -1
0 1 1 -1
1 0 1 0
0 -1 0 1
-1 -1
1 1 -1 1
0 0 -1 -1
0 1 0 1
1 0
1 1 1 -1
0 1 -1 -1
1 0 -1 0
1 -1
1 0 -1 1
-1 -1 1 0
0 -1 0 1
0...

output:

1.000000000000000 1.666666666666667
-1.000000000000000 1.000000000000000
-1.500000000000000 -0.500000000000000
0.333333333333333 -0.666666666666667
-0.384615384615385 -0.923076923076923
-1.000000000000000 0.000000000000000
-1.500000000000000 0.500000000000000
-0.853658536585366 -0.317073170731707
-1...

result:

ok 200000 numbers

Test #3:

score: 0
Accepted
time: 248ms
memory: 3928kb

input:

100000
2 -2 -1 -1
-1 2 2 -2
-1 -1 -2 2
2 0
-1 1 0 -2
2 -1 -2 1
2 -2 2 1
2 2
2 2 -2 -1
-2 1 2 1
1 1 -2 -2
1 -2
-2 -1 0 1
2 -1 1 1
1 0 -2 0
-1 0
1 2 -2 0
2 0 0 -1
-1 1 -2 -1
-1 2
1 0 0 -1
2 -1 -2 2
1 -2 -1 1
1 2
2 1 -2 -1
-2 2 0 -1
0 1 -1 1
1 -2
2 2 1 1
-1 1 2 2
-1 2 -1 -2
0 0
2 -1 -1 -2
1 -1 -2 1
0 1...

output:

-0.268727705112961 -0.982164090368609
-0.557315936626281 -2.690587138863001
-0.603550295857988 -1.248520710059172
-0.162162162162162 0.972972972972973
-2.230769230769231 -0.846153846153846
0.529411764705882 0.882352941176471
-2.000000000000000 -3.000000000000000
1.312373225152130 1.336713995943205
-...

result:

ok 200000 numbers

Test #4:

score: 0
Accepted
time: 240ms
memory: 3924kb

input:

100000
-2 -3 1 1
0 -3 3 3
-1 1 0 3
-1 -2
-3 1 -3 -1
0 -1 2 3
-2 0 -2 1
2 3
-2 1 3 -1
3 -1 3 -2
2 1 0 -3
-3 -1
-1 2 0 3
1 1 -3 -3
-1 -3 2 -3
2 1
0 -3 1 2
-3 -2 0 3
-2 2 2 -3
2 -3
-3 0 -3 2
0 0 -3 1
0 1 0 3
3 0
-3 -3 0 -3
1 1 3 -2
1 0 2 0
-1 1
-3 1 -3 2
-2 3 2 3
0 2 -2 -3
-1 -1
1 -2 1 1
1 1 -2 -3
-1 0...

output:

1.313513513513514 2.318918918918919
11.333333333333333 -22.333333333333333
3.041260744985673 -1.188538681948424
-1.411764705882353 -2.647058823529412
1.031596224866639 1.575297496922446
-3.666666666666667 2.000000000000000
1.333333333333333 -5.333333333333333
-4.333333333333333 -0.000000000000000
5....

result:

ok 200000 numbers

Test #5:

score: 0
Accepted
time: 245ms
memory: 3868kb

input:

100000
-4 -1 -3 1
-3 -4 -2 -2
-1 2 -4 -4
-1 2
1 0 1 4
-3 0 4 -4
-1 -2 -3 -1
3 4
-2 3 2 3
-3 2 4 0
2 -3 -2 0
1 -4
1 1 1 -3
3 1 -4 1
2 -3 -1 4
3 4
3 -2 3 1
4 -3 1 2
3 -1 -2 0
2 0
-2 -4 3 -2
2 1 3 1
-1 1 -1 -1
-4 -2
2 4 0 -2
-1 -2 -1 -4
0 -1 1 -3
1 3
-2 -2 -4 1
4 3 0 2
-2 -1 0 4
0 2
-3 0 -3 -1
-1 1 -4 ...

output:

-4.000000000000000 -4.000000000000000
2.472399767576990 1.445090063916328
-1.850992300184362 -0.274590608393884
-8.808298488259891 4.633000964940495
-1.171974522292994 2.815286624203822
2.785714285714286 -2.857142857142857
0.052451539338655 -2.079817559863170
0.049797898140663 2.210347615198060
-3.4...

result:

ok 200000 numbers

Test #6:

score: 0
Accepted
time: 278ms
memory: 3728kb

input:

100000
2 -1 -3 4
3 5 1 -5
-1 -2 0 -4
5 1
-3 2 1 0
3 -3 2 -5
-4 -4 2 1
3 3
3 -3 2 -2
3 5 -2 5
2 -3 0 3
-2 -1
-4 2 1 1
-2 5 1 5
4 -3 2 5
-1 2
-4 4 -5 2
-3 -1 5 5
-5 3 4 -4
-1 0
5 -1 -1 -3
2 3 -3 -5
-4 -1 -5 2
5 2
-1 -4 -2 2
-5 5 -1 2
-3 4 -3 -1
-1 -1
1 -3 -1 -3
-5 -3 -4 0
-2 -1 -4 2
0 4
0 -4 -4 -2
-4 ...

output:

1.816354696799793 -4.945829379798154
0.946127071536184 -1.116473583043275
-1.542493677676450 4.473829412215495
1.577540106951872 4.401069518716578
4.030285035629454 5.621733966745843
-1.925716036146424 -3.670240465614949
-2.089336578797452 1.939406494380859
-6.391167192429022 -0.593059936908517
-4.0...

result:

ok 200000 numbers

Test #7:

score: 0
Accepted
time: 244ms
memory: 3912kb

input:

100000
-6 6 -2 4
-5 5 3 -6
-1 4 -6 -4
1 5
-4 -3 -4 5
6 -3 1 4
-3 5 4 3
-1 5
5 -2 -5 2
-2 3 5 5
2 2 -3 0
2 4
-1 -6 2 1
-6 -5 4 -4
-5 -6 3 3
1 5
-3 5 1 1
5 5 -4 0
-1 4 6 -3
2 -5
3 1 -2 -4
4 3 3 -3
-5 -6 2 -2
2 0
4 -4 5 -4
6 3 0 1
3 4 -2 -1
6 -4
-5 6 -6 -3
-3 2 3 3
5 -3 -5 -6
2 -2
-3 5 3 -5
0 3 4 3
1 -...

output:

-6.309906858594412 -3.307366638441998
3.365726447048949 3.642666586733012
-3.795572958803922 -2.487427591340086
1.750836742283377 0.544440312383786
-2.149610846786392 -0.907648304502076
0.872600876530150 -1.883633066344265
6.092863541355629 -2.229322185727083
-4.667996272222268 -6.481988904073507
-3...

result:

ok 200000 numbers

Test #8:

score: 0
Accepted
time: 261ms
memory: 3868kb

input:

100000
-2 -1 -3 0
4 -4 -2 6
2 -1 -7 0
0 -6
-1 0 1 -2
-2 -3 2 -5
3 -2 -1 5
6 -1
1 5 -6 7
-6 -3 -3 2
7 -2 -3 -3
-3 -4
1 7 -5 -2
-5 -4 -5 -4
2 0 1 6
7 4
1 -3 6 -7
-6 -6 1 -5
4 -2 1 1
-3 -3
-5 0 2 7
-2 2 -5 1
3 -4 -1 6
6 4
-7 4 3 -2
-5 4 7 -7
0 2 0 2
2 -3
-7 1 4 -6
0 5 2 -6
4 -2 4 -5
-2 3
1 -7 -1 -7
7 -...

output:

-2.131422579517651 2.030059419783293
-3.893870082342177 0.751143641354071
-2.398470467736429 1.637364288152953
-6.139589807333748 -1.605469235550031
1.866404715127701 -5.212180746561886
-1.801550096881055 6.410088130508157
0.592365006152383 0.964587941329670
3.248780487804878 -5.960975609756098
1.89...

result:

ok 200000 numbers

Test #9:

score: 0
Accepted
time: 227ms
memory: 3852kb

input:

100000
6 1 3 5
7 -1 2 0
-3 -6 0 3
-6 -8
4 8 -4 7
-2 -5 -2 7
-2 -8 -4 -5
-7 -8
4 -7 -1 -5
2 5 -7 0
-4 0 -7 -5
-7 1
8 2 2 0
1 6 -6 3
0 -7 5 0
2 -5
-7 6 8 5
-5 3 -8 8
-5 0 -1 -8
5 -4
-1 6 -5 8
6 -7 4 5
-4 3 -6 -6
3 2
5 -2 1 5
6 -6 -4 0
3 5 -6 3
-8 2
-4 3 2 -8
6 0 3 7
-4 -8 -4 2
-5 0
-7 3 -3 -3
1 -8 -6 ...

output:

-0.120524504789361 3.034501999442016
-4.005907740781463 5.584209921722435
-8.429934825729668 -5.987339189572117
4.602292604860620 -0.542856079496818
3.464705882352941 -2.041176470588235
0.630072895864059 5.112222935734498
-5.269035532994924 2.233502538071066
-4.732206345883090 -6.242760088432852
-2....

result:

ok 200000 numbers

Test #10:

score: 0
Accepted
time: 275ms
memory: 3980kb

input:

100000
9 -3 3 4
-4 -6 -1 6
5 5 1 9
-1 -9
2 -7 4 -9
-4 -7 -4 -5
3 3 1 -4
-8 3
-8 -6 -8 9
-9 -4 -1 8
6 7 7 -3
6 -8
7 1 6 -3
2 0 6 -2
5 2 -1 -5
5 -2
6 -5 -5 1
-4 -8 -1 9
7 -7 8 1
2 -8
2 9 -6 -1
6 3 -4 5
3 3 9 8
4 -9
-2 3 9 2
-7 -6 9 9
-7 9 1 3
-9 -4
3 -1 -6 -7
9 4 -7 2
4 0 -3 -5
-7 -8
8 -3 5 -9
-9 1 1 ...

output:

-0.940805671480207 5.363530007508425
-0.427089404359482 -3.365310642265998
6.205317609794532 -8.463662470503480
6.158889545186060 -2.382161842882457
-1.629582412764706 11.371923185638553
-9.705901508846836 3.353294496508304
9.209075412304828 10.567479946873595
-10.687899399260956 -2.079464937975644
...

result:

ok 200000 numbers

Test #11:

score: 0
Accepted
time: 237ms
memory: 3876kb

input:

100000
1 -6 6 -6
7 6 3 4
9 -7 8 -9
6 -2
6 -9 -1 0
-6 -10 -5 -1
9 -10 -7 7
-2 -6
10 0 -1 -7
-5 -8 2 -1
6 6 1 -4
-7 6
-1 -2 -10 2
-5 7 -1 -10
-7 -5 6 -8
-6 -8
6 6 0 -5
-5 -1 -4 4
-10 -4 2 -6
-7 7
10 6 1 -10
-4 -4 -3 6
-1 -8 7 -1
10 -2
-1 -2 3 1
2 -9 -6 -1
7 -5 3 4
1 7
2 1 9 -5
7 -8 -4 -7
5 -6 6 7
-9 4...

output:

9.397932000529383 -4.725585826171161
-4.610935139613079 -0.753618244724916
1.813971728114411 -2.473520382840791
8.032270112795996 -10.880705161724061
0.668225860340795 -4.396926161042432
3.426765683682826 -9.996291488280899
2.386955394856971 1.932308899313282
9.105260114403614 -6.992107862299314
-4....

result:

ok 200000 numbers

Test #12:

score: 0
Accepted
time: 250ms
memory: 3860kb

input:

100000
6 -8 -8 -3
-7 4 -9 -9
10 -8 -11 2
0 1
-6 9 10 9
-4 1 5 -4
9 -7 -10 -8
-9 -4
8 8 7 -1
-10 -7 -11 -10
1 -3 -1 10
5 9
2 -8 9 8
-2 0 5 3
3 -9 -2 0
-2 -2
7 -6 5 4
-9 -7 -7 -2
9 11 7 -7
-7 -7
6 -7 -1 -10
-10 -9 3 -11
-4 -1 0 9
-11 5
-11 1 -11 9
-7 5 4 -6
-8 10 -11 2
3 2
-3 11 -6 0
0 11 0 11
5 4 -9 ...

output:

-9.641562964814443 -7.839370782097038
-0.612303383188504 -0.743837944584709
8.611786774662410 -1.485645427779917
5.124889376347339 3.048886199462955
-7.682534316725500 -0.430414615663984
2.663172955347042 -7.116889598722300
-8.116446477322115 5.061364681657264
-8.475793144513321 1.651335909706500
-7...

result:

ok 200000 numbers

Test #13:

score: 0
Accepted
time: 267ms
memory: 3852kb

input:

100000
-6 -2 -12 -5
-6 5 9 -10
12 5 12 8
7 -2
1 0 8 0
-10 -10 9 3
-9 12 -3 6
-4 -9
-1 -3 -12 8
0 -8 11 -2
11 -2 -6 11
3 -8
0 -3 -3 11
10 1 -10 7
-8 -3 -1 1
-12 -2
-7 -1 -8 1
1 8 12 10
12 -2 2 -10
-7 4
-6 -12 -8 8
-10 3 -6 -1
-3 0 -2 12
6 10
11 -11 -10 9
9 -12 -4 -1
10 -6 -8 -7
5 1
-10 4 -10 4
-10 9 ...

output:

11.013882132318944 14.485141047044956
8.767393060502619 2.103428854021311
-1.186562201856081 7.644713637283529
-3.769230769230769 -0.153846153846154
-9.165900180385051 7.093457806118019
-4.583897363336409 6.685280204646166
-5.561061946902655 -7.184070796460177
2.539220333150450 -3.116357550750092
-4...

result:

ok 200000 numbers

Test #14:

score: 0
Accepted
time: 245ms
memory: 3876kb

input:

100000
12 -13 -8 -3
1 -5 8 -7
-3 2 -6 12
-13 8
2 11 -7 6
-13 -11 8 -13
-7 8 3 13
-5 1
-3 -11 -9 0
-4 11 6 9
6 9 -12 13
11 13
-2 -5 -3 -6
5 -11 -5 -3
-12 -13 -10 6
-3 3
4 -13 -3 0
13 -4 -12 13
-2 -2 4 -6
-3 12
11 -4 0 13
-1 2 3 8
-6 12 -8 -4
-13 -2
-12 -4 10 -2
-10 -13 3 13
-7 -10 -7 -4
-7 13
8 -12 7...

output:

-7.335360872263206 5.110779735004140
14.806845551651653 74.786644621100228
-8.949423614563194 9.235864818473484
-6.692056245187957 -6.843709336827271
9.666674782386181 1.097874000201677
12.910265370100437 15.659431720612608
16.645082083209993 -4.313471566756635
6.034002016235260 -7.816828187952467
-...

result:

ok 200000 numbers

Test #15:

score: 0
Accepted
time: 289ms
memory: 3872kb

input:

100000
-10 13 0 3
14 13 11 -3
7 4 -1 -8
-13 9
-7 1 -8 -8
-6 -12 -14 11
10 12 -13 -2
-8 14
7 6 6 -11
-12 -11 -9 4
-12 12 -12 1
10 -6
-14 4 -5 -14
14 -12 -3 11
2 11 -8 1
10 1
-4 -14 -4 -4
-6 -2 -4 14
0 -5 -6 -2
3 1
-4 12 -6 1
12 2 9 5
-13 -6 -14 4
-6 8
-2 2 -1 -10
14 -9 -5 0
4 -14 -3 -7
-8 -10
0 13 10...

output:

-1.187920126403672 3.455980441242449
-13.759338445771637 -4.633636074495530
-3.460191596576195 4.180226125178006
-4.726109241950940 5.799971742398808
-4.272163602741216 -0.904383770259980
-7.729518291730993 0.012055716491179
-1.527735808331535 -8.303475070148932
9.016926077561261 -7.526332082427601
...

result:

ok 200000 numbers

Test #16:

score: 0
Accepted
time: 260ms
memory: 3924kb

input:

100000
14 -14 -7 -15
-10 -2 -5 -5
-9 12 15 -12
-1 14
-8 -9 15 -9
-13 6 7 9
12 10 9 1
6 -11
-11 9 -6 2
-3 11 -8 3
10 -2 -8 -13
-11 -13
-9 -12 14 2
0 1 4 -3
5 10 14 3
5 7
11 -10 0 -11
6 4 11 -2
-1 -4 4 -12
6 -7
1 -3 -2 -7
12 -11 -6 8
15 -1 12 -1
-10 9
-10 -6 4 4
11 13 14 -11
-10 12 -10 11
-12 -7
14 6 ...

output:

4.428658017083095 -18.126991529864559
10.419613597657075 -2.047225359011512
-3.263708063302651 -0.665963760983810
13.834557705511874 3.176504677222852
0.811301724403019 -12.962033066717689
0.717283158579100 -3.843111792720180
3.435480587826355 3.521875979383774
-1.941967674393087 14.576659456810759
...

result:

ok 200000 numbers

Test #17:

score: 0
Accepted
time: 273ms
memory: 3872kb

input:

100000
9 5 -15 2
-2 -11 5 6
-13 -10 15 -1
-9 6
16 -7 -12 -4
13 -9 -12 -10
-16 -10 -11 13
16 -14
-15 -11 -2 -1
-14 2 -1 -2
-15 5 -7 6
10 3
-12 -6 -14 3
-16 1 9 13
-7 -6 -8 -3
-16 3
5 8 9 6
-15 10 -4 -14
7 -13 -3 -9
-8 11
11 -5 -8 -3
-8 15 -3 14
3 -8 10 11
4 -9
-7 11 -14 11
16 -7 11 -15
12 14 14 -7
2 ...

output:

-0.982729396993687 -15.501844941233913
-3.665198209446243 -3.780295645370164
-2.327865741585806 -1.047988419018978
11.302677934099335 7.154919523820489
-4.909148383624533 -16.273543705845926
9.008945415595131 8.258780161828069
4.069824243080184 -13.380125673970125
4.962757268353490 -9.51007486382508...

result:

ok 200000 numbers

Test #18:

score: 0
Accepted
time: 259ms
memory: 3812kb

input:

100000
1 12 -13 4
6 -2 -14 -2
14 -2 2 -9
-9 4
14 -16 7 16
16 -4 11 5
13 -16 -2 -16
-10 -6
14 -15 -17 -15
-11 17 -9 3
-4 -13 -1 1
4 -14
9 -11 -16 8
-2 -11 -10 9
-9 -13 13 12
1 17
17 13 10 13
14 -13 6 4
3 15 14 12
10 -13
2 -8 -5 -14
-5 9 9 2
1 -10 -3 -11
-2 8
7 -8 -1 -15
15 5 10 4
-14 4 6 6
-2 3
1 -12...

output:

-15.100627686363934 3.573868783521422
10.461274574399719 4.518654966341059
8.417568732172119 -6.270556533349518
-17.907437819840343 3.232653730572770
7.060698951215030 2.118412948733831
10.483340777768485 4.023308496799486
5.875137587829863 4.156460023168997
11.916747525713177 10.898311663108869
-14...

result:

ok 200000 numbers

Test #19:

score: 0
Accepted
time: 261ms
memory: 3732kb

input:

100000
15 6 5 12
-6 -6 -4 -12
-7 8 4 3
-11 -5
-1 10 -2 -2
3 -2 -4 14
-17 13 -12 -2
10 0
-6 -16 -13 -5
0 4 9 -13
11 16 -10 -8
-1 0
-9 13 -12 -4
12 -18 -7 8
-6 11 -8 -3
-16 0
11 5 15 10
14 -9 13 -18
-13 -14 5 -4
-15 13
8 -18 -17 16
-3 1 3 -11
11 17 14 15
0 11
15 -8 14 11
-8 12 -14 18
4 12 11 7
-16 3
-...

output:

-3.306203711571417 -2.915417578144140
-5.410263295057887 8.090313205818710
-13.036730499035390 6.643718810749590
0.967684186366766 29.467156300206564
4.315480536916849 0.255876378206925
14.430447072125198 2.669929264367079
16.574948329048587 18.616325530480134
-4.434330407355053 11.147879650013932
-...

result:

ok 200000 numbers

Test #20:

score: 0
Accepted
time: 288ms
memory: 3920kb

input:

100000
-11 -2 12 -10
-7 -13 2 -5
-15 -6 -14 -16
12 -2
3 1 6 -16
-1 -5 -14 -18
0 3 -7 -14
-7 17
16 17 -10 13
-3 18 -18 5
-15 1 -16 12
19 0
-15 -18 13 -9
-5 3 -14 9
-6 9 10 15
-4 14
10 -19 -9 14
-13 6 -12 -15
10 2 -6 7
16 -1
14 12 -15 11
-2 -17 11 0
18 16 -17 -13
-6 4
-16 -18 3 -5
15 -10 -12 -1
-18 -1...

output:

3.698873266633814 -7.693539574632901
-12.204848147116188 -12.098746168849262
-12.961117016212848 13.920704090937343
11.852502385753647 7.536280653890278
-7.696875014816536 8.509124615362733
6.798057260265246 1.432690948793564
-11.904624842061010 -2.037710575800434
-28.253314344701485 -5.533476698306...

result:

ok 200000 numbers

Test #21:

score: 0
Accepted
time: 281ms
memory: 3928kb

input:

100000
9 -1 10 -3
-12 3 10 -10
-7 20 -5 -20
-5 -3
-12 8 7 0
-8 15 0 -4
-6 -3 -11 8
4 11
16 6 3 -12
20 -14 11 -5
-6 10 17 2
-4 -13
8 14 -14 -13
10 4 4 -9
4 -2 -6 -16
-11 1
1 -1 13 9
0 15 -6 3
16 -2 12 8
11 -14
1 -11 -4 16
-20 1 -12 10
16 -13 2 -18
-7 17
-18 3 -4 15
-17 8 4 -11
2 -16 -16 17
-18 10
12 ...

output:

10.298825501680328 -6.952922897364447
-5.112847030805530 -2.082813292465104
14.185697712476242 -3.236903039165197
-9.068810513528890 -16.065232879380423
11.908925676601393 8.588148997736746
-15.219570227990242 9.760576541341103
-40.208795137647479 -89.096531998569896
4.726367949584157 -18.5697077584...

result:

ok 200000 numbers

Test #22:

score: 0
Accepted
time: 293ms
memory: 3872kb

input:

100000
-13 -26 -29 14
28 -9 -14 3
-25 1 -19 30
2 14
-13 -6 5 5
-8 11 -29 28
22 -9 -7 16
-23 20
30 19 2 -10
-2 15 0 -9
1 4 -16 -4
10 1
-7 -27 -23 -6
-18 -9 -2 -24
-3 30 23 28
-7 -8
25 9 3 -22
-8 -26 0 14
-19 -23 29 6
12 29
-7 17 -4 -16
-4 14 24 -25
-13 -22 -24 -16
22 11
-4 -18 17 11
-3 -21 -16 -30
21...

output:

-6.801053399419870 15.486678866159473
-3.122996686837026 31.510311175611018
3.700840757937006 -12.298657297025976
-25.847971094038413 -48.935200841315332
6.950077672670269 -23.066737987082739
-25.672683953174692 -9.197737253546732
-28.230749942239424 -2.758479843234705
13.595473783548615 -5.62950440...

result:

ok 200000 numbers

Test #23:

score: 0
Accepted
time: 290ms
memory: 3872kb

input:

100000
37 12 -7 8
-26 -32 -10 10
37 -35 -33 30
-8 -4
-16 -19 -35 30
40 37 -3 -17
-12 -15 -4 14
26 4
19 13 -3 38
33 -2 0 -40
19 31 12 -20
10 -10
17 -7 -34 -3
-25 34 -15 10
15 37 -38 38
14 7
-29 -7 -24 11
-26 19 -20 38
-19 -34 -6 6
34 36
-29 31 17 -38
-6 -32 -24 34
-31 -14 21 -8
9 -23
10 3 -33 14
-23 ...

output:

-9.545669186892947 8.839872212577561
-3.614552909013341 -14.289659252473304
15.694016888016578 -44.233300134257765
-39.805392938375329 -11.444156244685754
2.920865041379892 26.581086459710011
-47.884300342270027 -14.762837362170200
17.863090701467970 19.018154067504258
-22.055401621429271 13.3422839...

result:

ok 200000 numbers

Test #24:

score: 0
Accepted
time: 286ms
memory: 3984kb

input:

100000
-32 -37 -23 -22
43 34 -4 41
-50 -18 30 41
43 47
-39 -20 49 -5
-20 -35 9 18
-16 1 48 -39
-41 -7
-31 -34 49 -34
-27 39 -46 17
-1 -34 -39 -47
-49 6
-45 -3 -47 -3
-23 -44 46 29
40 -21 19 33
-9 -2
39 43 -4 22
-45 29 -7 -14
-41 38 -1 -38
-49 -20
28 -30 8 -11
43 -30 -30 -6
-8 30 22 19
13 -4
37 -15 -...

output:

-3.243656495392057 40.847811542657776
55.383126307051522 -15.538049477894302
-31.105236000791457 40.339336774793306
12.048814895714498 16.928562873934791
-4.955719349751139 7.709238579750805
29.263242849553040 10.149471026950398
-55.597351687969362 20.698805760007522
103.562192471448806 30.609863828...

result:

ok 200000 numbers

Test #25:

score: 0
Accepted
time: 325ms
memory: 3984kb

input:

100000
22 -47 -50 24
-39 -52 -47 -34
-30 -15 -22 -12
-46 26
-5 -60 -25 -32
-48 -29 -1 10
30 15 -12 -37
44 -19
-28 3 -17 42
-39 -21 -56 22
15 36 30 53
-49 40
-44 -43 13 18
-43 -48 49 -47
-14 -9 -59 -53
-10 24
-17 59 29 -50
-34 -27 9 -50
57 54 21 31
6 -37
-44 22 -37 -11
47 9 -44 -39
28 50 47 16
40 23
...

output:

-34.213243915127392 -5.782318918727531
-15.586300566944156 -36.799555685751275
-3.643892438844427 81.546712757839086
-52.471115655944310 -53.058948272068116
2.144939870984126 -50.464418851182171
-34.243961373404697 -50.809903562711907
-41.999125172493909 -47.000178286790156
-38.596391988097408 46.39...

result:

ok 200000 numbers

Test #26:

score: 0
Accepted
time: 240ms
memory: 3896kb

input:

100000
43 -29 -20 -44
27 -41 -50 52
42 24 -22 12
60 -42
15 60 25 -40
7 -67 44 65
59 59 -37 10
-59 46
-60 -13 -63 -67
16 -20 -68 -28
-58 39 -21 19
-38 -42
20 -45 -33 17
60 -36 62 -67
-11 -63 -12 -17
-24 55
14 38 -5 -15
61 34 -45 36
5 -54 -66 50
1 7
59 15 42 -56
-47 4 13 56
54 -38 62 -41
-27 -3
15 -28...

output:

8.032415711200480 14.368698463754458
111.963039643918291 29.391042314113364
-65.721992975543567 -42.751284027298112
-11.272521973775646 -43.569258358547771
-78.248673989848561 88.793879000700312
65.627423003835030 144.607760793340722
13.686428554910758 -47.286812197210339
-95.714544565924553 -25.823...

result:

ok 200000 numbers

Test #27:

score: 0
Accepted
time: 295ms
memory: 3724kb

input:

100000
-62 -2 80 21
8 -52 -41 -9
-23 18 59 -36
80 64
45 65 -5 -60
-34 -15 -60 -22
9 -10 42 53
5 71
59 7 11 37
-58 12 35 -15
-45 -63 58 -80
62 -27
36 65 61 -38
73 -64 13 79
-9 -24 -71 -30
59 52
59 -16 -29 -75
-17 21 32 60
-51 36 22 -69
66 -63
56 -75 -75 70
-34 -13 -55 8
-11 -24 -70 5
-19 -73
22 -47 5...

output:

20.142486020347865 -154.515075377659409
-16.367894905259986 -67.406210150792803
-0.039588386212022 58.964189431953048
81.959084471820857 -24.795654092083358
-23.817256614690265 -80.228643100716293
-65.553151009581806 31.215000980938405
-35.054591060788662 -14.901894630223356
76.942603157575014 39.18...

result:

ok 200000 numbers

Test #28:

score: 0
Accepted
time: 317ms
memory: 3924kb

input:

100000
-88 -48 -22 59
-77 74 -11 44
-88 -47 -90 -14
81 -79
57 23 -90 -55
18 61 -34 54
76 68 -37 33
-82 11
-5 37 -27 -86
-71 -53 74 15
-21 47 74 -83
-46 12
-30 -58 6 2
-28 2 -33 7
-22 -80 -84 -61
6 24
-19 -69 -87 34
54 82 66 48
-39 -63 -41 -29
-25 -89
47 47 16 21
88 -39 41 -24
86 -31 -69 -15
-67 47
-...

output:

-10.991303613658869 44.190782397485708
-17.671897290805242 47.960183681132590
64.304569876151425 -11.274234066357619
-37.320488021329475 7.507647256797970
-32.948478335070748 34.350073897316061
18.390285914422159 20.187385050114500
13.433640327286958 -87.900207053963252
61.297741791206878 -58.123133...

result:

ok 200000 numbers

Test #29:

score: 0
Accepted
time: 312ms
memory: 3924kb

input:

100000
53 7 91 -58
86 -8 -4 -97
4 45 -61 82
-84 57
87 -48 -23 92
98 27 19 18
-51 -65 -76 -61
-64 -43
-42 42 -29 -59
-82 29 94 68
90 -79 22 -82
-54 -8
69 -61 -7 -64
25 26 -17 -18
35 48 15 -36
41 91
-85 7 -29 27
95 6 32 -85
88 44 75 -83
67 55
81 27 5 -26
2 -9 67 71
-12 88 -47 35
45 -95
8 45 15 -20
57 ...

output:

-69.749776228709950 10.295118161066614
-59.246613926465573 -64.094758211399620
19.046431433378275 -138.394730436183533
17.108908245913870 -57.883258098151876
89.560382721405353 -52.902563182514324
23.049497386362467 22.109587389299905
23.242666660762014 -23.875987345621160
15.934524220496985 31.5133...

result:

ok 200000 numbers