QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#760702#9576. Ordainer of Inexorable JudgmentMaxDYFWA 1ms4300kbC++237.6kb2024-11-18 18:33:212024-11-18 18:33:22

Judging History

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

  • [2024-12-23 14:23:26]
  • hack成功,自动添加数据
  • (/hack/1303)
  • [2024-12-06 11:32:56]
  • hack成功,自动添加数据
  • (/hack/1271)
  • [2024-11-18 18:33:22]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:4300kb
  • [2024-11-18 18:33:21]
  • 提交

answer

// #pragma GCC optimize("Ofast,no-stack-protector")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef double db;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<db, db> pdd;
typedef pair<ll, int> pli;

const int N = 2e5 + 10;
const int inf = 1 << 30;
const ll inf64 = 1ll << 60;

#define lowbit(x) (x & -x)

int n, m, k, q;
typedef long double design_float;
const design_float PI = acos(-1);
const design_float eps = 1e-7;
struct Vector
{
	design_float x, y;
	Vector(design_float x = 0, design_float y = 0)
		: x(x), y(y)
	{
	}
	bool operator==(const Vector &b) const { return fabs(x - b.x) <= eps && fabs(y - b.y) <= eps; }
	Vector operator+(const Vector &b) const { return Vector(x + b.x, y + b.y); }
	Vector operator-(const Vector &b) const { return Vector(x - b.x, y - b.y); }
	Vector operator*(const design_float &b) const { return Vector(x * b, y * b); }
	Vector operator/(const design_float &b) const { return Vector(x / b, y / b); }
	design_float operator*(const Vector &b) const { return x * b.x + y * b.y; }
	// 重定义^为叉乘
	design_float operator^(const Vector &b) const { return x * b.y - y * b.x; }
	design_float length() const { return sqrt(x * x + y * y); }
	design_float angle() const { return atan2(-y, -x); }
	Vector unit() const { return *this / length(); }
	// 将向量旋转angle角度,angle为弧度制
	Vector rotate(design_float angle) const
	{
		return Vector(x * cos(angle) - y * sin(angle), x * sin(angle) + y * cos(angle));
	}
	Vector rotate90() const
	{
		return Vector(-y, x);
	}
};
typedef Vector Point;
struct Line
{
	Point a, b;
	Vector vec() { return b - a; }
	Line(Point a = Point(), Point b = Point())
		: a(a), b(b)
	{
	}
	// 判断点c在直线上
	bool isPointOnLine(Point c) { return ((b - a) ^ (c - a)) == 0; }
	// 判断点c在线段上
	bool isPointOnSegment(Point c)
	{
		return fabs((b - a) ^ (c - a)) <= eps && (c - a) * (c - b) <= eps;
	}
	// 求点c到直线的距离
	design_float distanceToLine(Point c)
	{
		return fabs(((b - a) ^ (c - a)) / (b - a).length());
	}
	// 求点c到线段的距离
	design_float distanceToSegment(Point c)
	{
		if ((c - a) * (b - a) < 0)
			return (c - a).length();
		if ((c - b) * (a - b) < 0)
			return (c - b).length();
		return distanceToLine(c);
	}
	// 求点c到线段的最近点
	Point nearestPointToSegment(Point c)
	{
		if ((c - a) * (b - a) < 0)
			return a;
		if ((c - b) * (a - b) < 0)
			return b;
		design_float r = (c - a) * (b - a) / (b - a).length();
		return a + (b - a).unit() * r;
	}
};
namespace Geometry
{
	Point rotate(Point p, Point base, design_float angle)
	{
		return (p - base).rotate(angle) + base;
	}
	Point intersection(Line l1, Line l2)
	{
		design_float s1 = (l2.b - l2.a) ^ (l1.a - l2.a);
		design_float s2 = (l2.b - l2.a) ^ (l1.b - l2.a);
		return (l1.a * s2 - l1.b * s1) / (s2 - s1);
	}
	// 输入一个点集,返回凸包
	std::vector<Point> getHull(std::vector<Point> p)
	{
		std::vector<Point> h, l;
		std::sort(p.begin(), p.end(), [&](auto a, auto b)
				  {
		if (a.x != b.x) {
			return a.x < b.x;
		} else {
			return a.y < b.y;
		} });
		p.erase(std::unique(p.begin(), p.end()), p.end());
		if (p.size() <= 1)
		{
			return p;
		}

		for (auto a : p)
		{
			while (h.size() > 1 && ((a - h.back()) ^ (a - h[h.size() - 2])) <= 0)
				h.pop_back();
			while (l.size() > 1 && ((a - l.back()) ^ (a - l[l.size() - 2])) >= 0)
				l.pop_back();
			l.push_back(a);
			h.push_back(a);
		}
		l.pop_back();
		std::reverse(h.begin(), h.end());
		h.pop_back();
		l.insert(l.end(), h.begin(), h.end());
		return l;
	}
	// 计算凸包的边长
	design_float getHullLength(std::vector<Point> hull)
	{
		design_float res = 0;
		for (int i = 0; i < hull.size(); i++)
			res += (hull[i] - hull[(i + 1) % hull.size()]).length();
		return res;
	}
	// 计算凸包的面积
	design_float getHullArea(std::vector<Point> hull)
	{
		design_float res = 0;
		for (int i = 0; i < hull.size(); i++)
			res += (hull[i] ^ hull[(i + 1) % hull.size()]);
		return fabs(res) / 2;
	}
	bool pointOnLeft(Point p, Line l)
	{
		return ((l.b - l.a) ^ (p - l.a)) > eps;
	}
	// 求半平面交,给定若干条有向线段,算法将其排序后,以左边为半平面,返回交的凸包。
	std::vector<Point> getHalfPlane(std::vector<Line> lines)
	{
		sort(lines.begin(), lines.end(), [](auto a, auto b)
			 {
			design_float angle1 = a.vec().angle(), angle2 = b.vec().angle();
			if (fabs(angle1 - angle2) <= eps)
				return pointOnLeft(a.a, b);
			else
				return angle1 < angle2; });
		std::vector<Line> res;
		for (auto x : lines)
		{
			if (!res.empty() && fabs(x.vec().angle() - res.back().vec().angle()) <= eps)
				continue;
			res.push_back(x);
		}
		lines.swap(res);
		int len = lines.size();
		int l = 1, r = 0;
		std::vector<int> q(len * 2);
		std::vector<Point> p(len * 2);
		for (int i = 0; i < len; i++)
		{
			while (l < r && !pointOnLeft(p[r], lines[i]))
				r--;
			while (l < r && !pointOnLeft(p[l + 1], lines[i]))
				l++;
			q[++r] = i;
			if (l < r && fabs((lines[q[r]].vec() ^ lines[q[r - 1]].vec())) <= eps)
				if (lines[q[r]].vec() * lines[q[r - 1]].vec() < -eps)
					return std::vector<Point>();
			if (l < r)
				p[r] = intersection(lines[q[r]], lines[q[r - 1]]);
		}
		while (l < r && !pointOnLeft(p[r], lines[q[l]]))
			r--;
		if (r - l <= 1)
			return std::vector<Point>();
		p[l] = intersection(lines[q[r]], lines[q[l]]);
		std::vector<Point> ans;
		while (l <= r)
		{
			ans.push_back(p[l]);
			l++;
		}
		return ans;
	}
}
void work()
{
	int n;
	Vector init;
	long double d, t;
	cin >> n >> init.x >> init.y >> d >> t;
	bool rot0 = 0, rot1 = 0;
	vector<Point> s0(n);
	for (int i = 0; i < n; i++)
	{
		cin >> s0[i].x >> s0[i].y;
		long double l = s0[i].length();
		long double angle = asin(d / l), len = sqrt(l * l - d * d);
		Vector pout = s0[i].rotate(angle).unit() * len;
		Vector pin = s0[i].rotate(-angle).unit() * len;
		if (pin.x >= 0 && pin.y < 0)
			rot0 = 1;
		if (pin.x >= 0 && pin.y >= 0)
			rot1 = 1;
		if (pout.x >= 0 && pout.y < 0)
			rot0 = 1;
		if (pout.x >= 0 && pout.y >= 0)
			rot1 = 1;
	}
	if (rot0 && rot1)
	{
		init = init.rotate90();
		for (int i = 0; i < n; i++)
			s0[i] = s0[i].rotate90();
	}
	Vector in, out;
	bool inflag = 0, outflag = 0;
	for (int i = 0; i < n; i++)
	{
		long double l = s0[i].length();
		long double angle = asin(d / l), len = sqrt(l * l - d * d);
		Vector pout = s0[i].rotate(angle).unit() * len;
		Vector pin = s0[i].rotate(-angle).unit() * len;
		if (!inflag || in.angle() > pin.angle())
			in = pin, inflag = 1;
		if (!outflag || out.angle() < pout.angle())
			out = pout, outflag = 1;
	}
	long double ans = 0;
	if (in.angle() <= init.angle() && init.angle() <= out.angle())
	{
		long double t0 = out.angle() - init.angle();
		if (t0 < t)
		{
			ans += t0;
			t -= PI * 2 - (init.angle() - in.angle());
			if (t < 0)
				t = 0;
		}
		else 
		{
			ans += t;
			t = 0;
		}
	}
	else if (init.angle() < in.angle())
	{
		t -= in.angle() - init.angle();
		if (t < 0)
			t = 0;
	}
	else if (init.angle() > out.angle())
	{
		t -= PI * 2 - (init.angle() - in.angle());
		if (t < 0)
			t = 0;
	}
	init = in;
	ans += floor(t / (PI * 2)) * (out.angle() - in.angle());
	t = fmod(t, PI * 2);
	if (t > (out.angle() - in.angle()))
		ans += (out.angle() - in.angle());
	else
		ans += t;
	cout << fixed << setprecision(6) << ans << '\n';
}
int main()
{
	cin.tie(nullptr)->sync_with_stdio(false);
	int t = 1;
	while (t-- > 0)
	{
		work();
	}
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 4028kb

input:

3 1 0 1 1
1 2
2 1
2 2

output:

1.000000

result:

ok found '1.0000000', expected '1.0000000', error '0.0000000'

Test #2:

score: 0
Accepted
time: 0ms
memory: 4188kb

input:

3 1 0 1 2
1 2
2 1
2 2

output:

1.570796

result:

ok found '1.5707960', expected '1.5707963', error '0.0000002'

Test #3:

score: 0
Accepted
time: 0ms
memory: 4048kb

input:

3 1 0 1 10000
1 2
2 1
2 2

output:

2500.707752

result:

ok found '2500.7077520', expected '2500.7077523', error '0.0000000'

Test #4:

score: 0
Accepted
time: 0ms
memory: 4032kb

input:

3 10000 10000 1 10000
10000 9999
10000 10000
9999 10000

output:

0.384241

result:

ok found '0.3842410', expected '0.3842413', error '0.0000003'

Test #5:

score: 0
Accepted
time: 1ms
memory: 4232kb

input:

3 -10000 -10000 10000 10000
-10000 -9999
-10000 -10000
-9999 -10000

output:

2500.240670

result:

ok found '2500.2406700', expected '2500.2406700', error '0.0000000'

Test #6:

score: 0
Accepted
time: 0ms
memory: 4136kb

input:

4 1 0 1 10000
-2 3400
-4 10000
-4 -10000
-2 -3400

output:

4999.219115

result:

ok found '4999.2191150', expected '4999.2191154', error '0.0000000'

Test #7:

score: 0
Accepted
time: 0ms
memory: 4124kb

input:

4 1 0 1 10000
-2 3300
-4 10000
-4 -10000
-2 -3300

output:

4999.200392

result:

ok found '4999.2003920', expected '4999.2003919', error '0.0000000'

Test #8:

score: 0
Accepted
time: 0ms
memory: 4032kb

input:

4 -3040 2716 2147 2
-9033 -8520
-8999 -8533
-8988 -8511
-9004 -8495

output:

0.350830

result:

ok found '0.3508300', expected '0.3508301', error '0.0000001'

Test #9:

score: 0
Accepted
time: 0ms
memory: 4048kb

input:

3 8168 -766 1549 1256
-3951 -6425
-3874 -6439
-3911 -6389

output:

84.832861

result:

ok found '84.8328610', expected '84.8328612', error '0.0000000'

Test #10:

score: 0
Accepted
time: 0ms
memory: 4212kb

input:

8 2977 -3175 8766 2
-4868 7759
-4867 7925
-4867 7950
-4886 7952
-4979 7953
-5048 7877
-5003 7761
-4936 7759

output:

0.327861

result:

ok found '0.3278610', expected '0.3278606', error '0.0000004'

Test #11:

score: 0
Accepted
time: 1ms
memory: 4128kb

input:

13 -1715 -4640 267 8651
272 6659
264 6660
208 6664
108 6625
107 6621
93 6564
90 6551
90 6485
124 6474
219 6477
283 6525
288 6591
286 6657

output:

153.589623

result:

ok found '153.5896230', expected '153.5896228', error '0.0000000'

Test #12:

score: 0
Accepted
time: 0ms
memory: 4296kb

input:

8 -9743 -7629 775 7
-194 981
-191 1720
-193 1845
-705 1929
-959 1950
-1131 1894
-1151 1604
-1031 1020

output:

2.046006

result:

ok found '2.0460060', expected '2.0460062', error '0.0000001'

Test #13:

score: 0
Accepted
time: 1ms
memory: 4168kb

input:

9 -6770 -1426 3491 1918
-2118 2886
-2063 3245
-2122 3709
-2129 3737
-2850 3718
-2984 3650
-3042 3462
-3028 2972
-2688 2888

output:

822.241185

result:

ok found '822.2411850', expected '822.2411850', error '0.0000000'

Test #14:

score: 0
Accepted
time: 0ms
memory: 4224kb

input:

12 1616 -7384 5256 10
-5607 2623
-5838 2843
-6117 2986
-6592 3169
-7129 3120
-7334 3069
-7406 2295
-7369 1712
-7091 1287
-6312 1252
-5596 1592
-5457 2088

output:

3.038765

result:

ok found '3.0387650', expected '3.0387654', error '0.0000001'

Test #15:

score: 0
Accepted
time: 0ms
memory: 4096kb

input:

10 -4546 5056 639 2996
4851 -3506
6078 -3725
6629 -3674
6775 -3296
6743 -2137
6585 -1866
5334 -1837
4950 -2020
4873 -2260
4852 -3240

output:

262.423969

result:

ok found '262.4239690', expected '262.4239691', error '0.0000000'

Test #16:

score: 0
Accepted
time: 0ms
memory: 4184kb

input:

20 4847 -6818 2502 2
-2164 -3844
-2453 -3826
-4654 -3818
-5073 -3829
-5212 -3833
-5828 -3921
-5889 -6065
-5896 -6716
-5877 -7349
-5855 -7457
-5619 -7711
-5485 -7786
-3743 -7809
-2345 -7747
-2075 -7682
-1960 -7364
-1900 -7015
-1901 -6391
-1922 -4091
-1968 -4028

output:

0.000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #17:

score: 0
Accepted
time: 1ms
memory: 4060kb

input:

14 -1792 -5751 2349 4072
-3697 -4432
-4268 -4431
-6475 -4433
-7140 -4464
-7320 -4526
-7354 -5333
-7357 -5731
-7366 -7076
-7346 -7868
-7218 -8415
-4044 -8407
-3412 -8398
-3388 -7296
-3391 -4497

output:

758.966768

result:

ok found '758.9667680', expected '758.9667683', error '0.0000000'

Test #18:

score: 0
Accepted
time: 1ms
memory: 4136kb

input:

23 8820 -5943 927 1
-1319 -4435
-1321 -297
-1361 -149
-1379 -119
-1619 13
-6579 12
-7090 11
-7184 -5
-7209 -18
-7277 -62
-7316 -672
-7316 -5095
-7295 -5877
-7273 -5921
-7250 -5955
-6569 -5967
-5927 -5975
-4278 -5977
-2646 -5978
-1477 -5965
-1472 -5962
-1404 -5892
-1334 -5809

output:

0.000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #19:

score: 0
Accepted
time: 1ms
memory: 4196kb

input:

22 -5664 7523 2588 8083
3456 2960
3446 2865
3433 2724
3432 615
3434 -1360
3446 -2929
3602 -2969
6204 -2972
8409 -2972
9227 -2969
9329 -2929
9375 -2890
9426 -2575
9432 2499
9432 2620
9390 2954
9386 2968
9277 3023
8340 3026
6809 3026
3634 3020
3600 3018

output:

3378.311740

result:

ok found '3378.3117400', expected '3378.3117401', error '0.0000000'

Test #20:

score: 0
Accepted
time: 1ms
memory: 4128kb

input:

19 -1886 -3232 561 6
-8846 -7186
-8842 -7658
-8705 -7660
-1521 -7660
-1248 -7658
-1048 -7654
-906 -7650
-877 -7643
-858 -7619
-846 -7598
-846 -1489
-847 -277
-851 311
-1001 332
-1072 340
-7480 340
-8844 337
-8845 332
-8846 -9

output:

2.268233

result:

ok found '2.2682330', expected '2.2682334', error '0.0000002'

Test #21:

score: 0
Accepted
time: 1ms
memory: 4224kb

input:

27 -8996 -3721 1431 7076
5671 -1552
3604 -1551
1370 -1551
-1106 -1552
-1845 -1553
-1945 -1582
-1964 -1649
-1981 -1924
-1981 -7875
-1980 -8365
-1979 -8628
-1977 -8988
-1974 -9316
-1963 -9548
-1871 -9550
-1288 -9551
5996 -9551
6006 -9455
6010 -9391
6012 -9343
6014 -9271
6015 -9144
6019 -7478
6019 -263...

output:

3442.559174

result:

ok found '3442.5591740', expected '3442.5591737', error '0.0000000'

Test #22:

score: 0
Accepted
time: 1ms
memory: 4164kb

input:

5 -7413 -6822 8371 4
-8435 1969
-8446 1918
-8438 1885
-8390 1892
-8422 1955

output:

0.395158

result:

ok found '0.3951580', expected '0.3951577', error '0.0000003'

Test #23:

score: 0
Accepted
time: 1ms
memory: 4116kb

input:

5 5998 6928 4304 9649
-9352 -3336
-9335 -3337
-9282 -3320
-9273 -3304
-9313 -3284

output:

1393.595879

result:

ok found '1393.5958790', expected '1393.5958787', error '0.0000000'

Test #24:

score: 0
Accepted
time: 0ms
memory: 4288kb

input:

13 7526 -9874 3812 9
2735 4538
2673 4561
2663 4563
2652 4563
2609 4539
2607 4535
2582 4483
2593 4434
2601 4415
2711 4396
2735 4405
2749 4417
2777 4472

output:

3.299236

result:

ok found '3.2992360', expected '3.2992360', error '0.0000000'

Test #25:

score: 0
Accepted
time: 0ms
memory: 4164kb

input:

9 1419 -6061 9067 634
-1331 -9405
-1206 -9456
-1165 -9391
-1157 -9359
-1184 -9294
-1252 -9276
-1312 -9299
-1329 -9336
-1336 -9354

output:

266.390381

result:

ok found '266.3903810', expected '266.3903806', error '0.0000000'

Test #26:

score: 0
Accepted
time: 1ms
memory: 4220kb

input:

15 -5029 6807 4505 5
5196 -3478
5116 -3556
5042 -3690
5048 -3936
5065 -4054
5286 -4238
5369 -4303
5565 -4330
5688 -4296
5868 -4016
5935 -3724
5909 -3628
5829 -3532
5702 -3457
5492 -3365

output:

1.667852

result:

ok found '1.6678520', expected '1.6678521', error '0.0000001'

Test #27:

score: 0
Accepted
time: 0ms
memory: 4184kb

input:

8 -6347 -8448 6719 6605
3802 9434
3837 9059
4354 9016
4552 9221
4542 9631
4330 9896
4110 9896
3900 9862

output:

1615.078290

result:

ok found '1615.0782900', expected '1615.0782900', error '0.0000000'

Test #28:

score: 0
Accepted
time: 0ms
memory: 4032kb

input:

12 -8728 4539 203 9
-3507 4626
-3495 4605
-3095 4278
-3072 4264
-2541 4110
-2080 4377
-1922 4677
-1746 5070
-1927 5624
-1971 5701
-3196 5842
-3461 5433

output:

0.390539

result:

ok found '0.3905390', expected '0.3905393', error '0.0000003'

Test #29:

score: 0
Accepted
time: 0ms
memory: 4192kb

input:

9 -599 -8427 1668 7471
5447 4490
6396 4800
6412 5020
6427 5800
5979 6214
5251 6192
4832 5791
4774 5592
4737 5033

output:

790.394923

result:

ok found '790.3949230', expected '790.3949233', error '0.0000000'

Test #30:

score: 0
Accepted
time: 0ms
memory: 4112kb

input:

26 4318 -8273 11 10
-2611 829
-2521 620
-2457 549
-2410 500
-2220 313
-1611 -93
-1294 -177
-210 -92
-76 -40
542 469
735 660
817 791
1022 1241
1107 1882
825 2680
641 2986
578 3043
94 3448
-229 3634
-1086 3713
-1501 3575
-2117 3250
-2441 2901
-2583 2720
-2858 2050
-2837 1715

output:

4.985627

result:

ok found '4.9856270', expected '4.9856267', error '0.0000001'

Test #31:

score: 0
Accepted
time: 0ms
memory: 4112kb

input:

28 -5212 -3307 3213 9807
-8651 3425
-8608 2890
-8399 2503
-8247 2230
-8135 2085
-8009 1935
-7593 1637
-7417 1512
-6970 1450
-6316 1388
-6030 1478
-5588 1674
-5323 1882
-4788 2794
-4747 2896
-4855 3889
-4949 4158
-5050 4422
-5377 4814
-5501 4953
-5989 5188
-6221 5243
-6566 5324
-7210 5255
-7874 4929
...

output:

2376.028690

result:

ok found '2376.0286900', expected '2376.0286897', error '0.0000000'

Test #32:

score: 0
Accepted
time: 1ms
memory: 4184kb

input:

53 4446 -5955 79 3
1828 -4250
1917 -4046
2082 -3505
2127 -3118
2114 -2868
2109 -2803
2070 -2361
1901 -1776
1770 -1497
1501 -1099
1323 -891
1232 -797
637 -337
-125 -45
-424 29
-600 55
-1256 7
-1705 -60
-2158 -234
-2276 -288
-2500 -447
-2858 -728
-3083 -924
-3263 -1179
-3534 -1612
-3648 -1840
-3707 -2...

output:

0.552708

result:

ok found '0.5527080', expected '0.5527083', error '0.0000003'

Test #33:

score: 0
Accepted
time: 1ms
memory: 4128kb

input:

59 1400 -4139 336 7647
-139 3085
-145 3609
-209 3969
-229 4049
-258 4152
-378 4474
-543 4810
-608 4909
-722 5059
-1056 5443
-1231 5599
-1668 5902
-2201 6131
-2281 6156
-2706 6251
-3150 6282
-3431 6256
-3667 6227
-4165 6087
-4377 6000
-4434 5967
-4785 5758
-5147 5484
-5426 5203
-5656 4847
-5848 4523
...

output:

2006.408994

result:

ok found '2006.4089940', expected '2006.4089938', error '0.0000000'

Test #34:

score: 0
Accepted
time: 0ms
memory: 4124kb

input:

100 1100 -2467 56 4
-594 -189
-315 -68
-92 52
141 210
332 340
580 548
659 617
802 762
977 960
1076 1086
1376 1558
1547 1885
1663 2169
1728 2372
1770 2522
1852 2932
1878 3157
1886 3377
1891 3590
1891 3634
1864 3927
1818 4281
1781 4430
1661 4832
1537 5157
1380 5466
1189 5773
1155 5821
1062 5949
915 61...

output:

2.169446

result:

ok found '2.1694460', expected '2.1694458', error '0.0000001'

Test #35:

score: 0
Accepted
time: 1ms
memory: 4096kb

input:

100 6873 -9062 270 5917
230 631
262 351
367 -155
397 -257
549 -653
607 -791
722 -1021
809 -1169
890 -1294
1128 -1604
1420 -1924
1513 -2010
1674 -2147
1841 -2285
2123 -2477
2431 -2641
3346 -2970
3658 -3030
4110 -3066
4671 -3036
4779 -3021
4961 -2995
5156 -2951
5316 -2910
5571 -2827
5850 -2716
6473 -2...

output:

2664.374011

result:

ok found '2664.3740110', expected '2664.3740107', error '0.0000000'

Test #36:

score: 0
Accepted
time: 0ms
memory: 4212kb

input:

5 2638 -4463 7250 10
-6121 4256
-6123 4245
-6100 4200
-6026 4229
-6068 4291

output:

4.338920

result:

ok found '4.3389200', expected '4.3389197', error '0.0000001'

Test #37:

score: 0
Accepted
time: 0ms
memory: 4224kb

input:

4 9037 -7470 4708 5338
307 6249
341 6173
391 6245
322 6264

output:

1471.600927

result:

ok found '1471.6009270', expected '1471.6009273', error '0.0000000'

Test #38:

score: 0
Accepted
time: 0ms
memory: 4124kb

input:

36 3764 6801 4323 8
-7120 -4568
-7129 -4567
-7146 -4567
-7151 -4568
-7192 -4583
-7200 -4589
-7206 -4594
-7219 -4609
-7225 -4619
-7228 -4625
-7234 -4645
-7236 -4653
-7236 -4677
-7233 -4692
-7229 -4703
-7210 -4733
-7187 -4752
-7171 -4759
-7154 -4764
-7143 -4765
-7107 -4761
-7104 -4760
-7093 -4755
-708...

output:

1.090048

result:

ok found '1.0900480', expected '1.0900475', error '0.0000004'

Test #39:

score: 0
Accepted
time: 0ms
memory: 4192kb

input:

35 -5028 9347 1180 2618
9370 8586
9398 8567
9403 8565
9417 8561
9426 8559
9437 8559
9495 8576
9514 8594
9524 8608
9530 8620
9536 8639
9537 8649
9537 8659
9533 8688
9520 8714
9499 8736
9493 8741
9481 8748
9476 8750
9455 8756
9421 8756
9413 8754
9393 8747
9372 8733
9361 8721
9357 8716
9352 8708
9348 8...

output:

83.263086

result:

ok found '83.2630860', expected '83.2630859', error '0.0000000'

Test #40:

score: -100
Wrong Answer
time: 1ms
memory: 4300kb

input:

45 -6843 -8564 8658 4
7836 -6692
7842 -6709
7932 -6858
7951 -6879
8093 -6981
8149 -7004
8155 -7006
8226 -7024
8296 -7030
8458 -7007
8504 -6991
8555 -6965
8602 -6935
8666 -6880
8673 -6873
8723 -6810
8733 -6795
8756 -6753
8783 -6687
8786 -6679
8787 -6676
8799 -6626
8804 -6598
8808 -6514
8797 -6424
879...

output:

1.947358

result:

wrong answer 1st numbers differ - expected: '2.0909677', found: '1.9473580', error = '0.0686810'