QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#445475#8524. Weather Forecastucup-team3099#AC ✓1288ms14352kbC++204.3kb2024-06-16 02:45:002024-06-16 02:45:00

Judging History

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

  • [2024-06-16 02:45:00]
  • 评测
  • 测评结果:AC
  • 用时:1288ms
  • 内存:14352kb
  • [2024-06-16 02:45:00]
  • 提交

answer

#ifdef LOCAL
#define _GLIBCXX_DEBUG 1
#define dbg(...) cerr << "LINE(" << __LINE__ << ") -> [" << #__VA_ARGS__ << "]: [", DBG(__VA_ARGS__)
#else
#define dbg(...) 0
#endif

#if 0
    #include <ext/pb_ds/assoc_container.hpp>
    #include <ext/pb_ds/tree_policy.hpp>
 
    template<class T>
    using ordered_set = __gnu_pbds::tree<T, __gnu_pbds::null_type, std::less<T>, __gnu_pbds::rb_tree_tag,
        __gnu_pbds::tree_order_statistics_node_update>;
#endif

#include <vector> 
#include <list> 
#include <map> 
#include <set> 
#include <queue>
#include <stack> 
#include <bitset> 
#include <algorithm> 
#include <numeric> 
#include <utility> 
#include <sstream> 
#include <iostream> 
#include <iomanip> 
#include <cstdio> 
#include <cmath> 
#include <cstdlib> 
#include <ctime> 
#include <cstring>
#include <random>
#include <chrono>
#include <cassert>

using namespace std;
 
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define sz(x) (int)(x).size()
#define all(x) begin(x), end(x)
#define FOR(i,a,b) for (int i = (a); i < (b); ++i)
#define F0R(i,a) FOR(i,0,a)
#define REP(i,n) for(int (i)=0;(i)<(int)(n);(i)++)

#define each(a,x) for (auto& a: x)
#define tcT template<class T
#define tcTU tcT, class U
#define tcTUU tcT, class ...U
template<class T> using V = vector<T>; 
template<class T, size_t SZ> using AR = array<T,SZ>;

typedef string str;
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<vi> vvi;
 
template<typename T, typename U> T &ctmax(T &x, const U &y){ return x = max<T>(x, y); }
template<typename T, typename U> T &ctmin(T &x, const U &y){ return x = min<T>(x, y); }
 
mt19937 rng((unsigned)chrono::steady_clock::now().time_since_epoch().count());
 
#define ts to_string
str ts(char c) { return str(1,c); }
str ts(bool b) { return b ? "true" : "false"; }
str ts(const char* s) { return (str)s; }
str ts(str s) { return s; }
str ts(vector<bool> v) { str res = "{"; F0R(i,sz(v)) res += char('0'+v[i]);	res += "}"; return res; }
template<size_t SZ> str ts(bitset<SZ> b) { str res = ""; F0R(i,SZ) res += char('0'+b[i]); return res; }
template<class A, class B> str ts(pair<A,B> p);
template<class T> str ts(T v) { bool fst = 1; str res = "{"; for (const auto& x: v) {if (!fst) res += ", ";	fst = 0; res += ts(x);}	res += "}"; return res;}
template<class A, class B> str ts(pair<A,B> p) {return "("+ts(p.first)+", "+ts(p.second)+")"; }
 
template<class A> void pr(A x) { cout << ts(x); }
template<class H, class... T> void pr(const H& h, const T&... t) { pr(h); pr(t...); }
void ps() { pr("\n"); }
template<class H, class... T> void ps(const H& h, const T&... t) { pr(h); if (sizeof...(t)) pr(" "); ps(t...); }
 
void DBG() { cerr << "]" << endl; }
template<class H, class... T> void DBG(H h, T... t) {cerr << ts(h); if (sizeof...(t)) cerr << ", ";	DBG(t...); }

tcTU> void re(pair<T,U>& p);
tcT> void re(V<T>& v);
tcT, size_t SZ> void re(AR<T,SZ>& a);

tcT> void re(T& x) { cin >> x; }
void re(double& d) { str t; re(t); d = stod(t); }
void re(long double& d) { str t; re(t); d = stold(t); }
tcTUU> void re(T& t, U&... u) { re(t); re(u...); }

tcTU> void re(pair<T,U>& p) { re(p.first,p.second); }
tcT> void re(V<T>& x) { each(a,x) re(a); }
tcT, size_t SZ> void re(AR<T,SZ>& x) { each(a,x) re(a); }
tcT> void rv(int n, V<T>& x) { x.rsz(n); re(x); }

constexpr bool multitest() {return 0;}
void solve();
int main() {
	ios_base::sync_with_stdio(false); cin.tie(NULL);
	int t = 1;
	if (multitest()) cin >> t;
	for (; t; t--) solve();
}
























void solve() {
	int n, k; re(n, k);

	vector<ll> a(n); re(a);

	for (int i = 0; i < n; i++) a[i] *= 100000;
	ll st = 0, ed = *max_element(all(a));
	
	while (st < ed) {
		ll md = (st+ed+1)/2;

		multiset<ll> lis; lis.insert(0);

		ll s = 0;
		for (int i = 0; i < n-1; i++) {
			s += (a[i] - md);
			if (s >= 0) {
				auto it = lis.upper_bound(s);
				if (it != lis.end()) lis.erase(it);
				lis.insert(s);
			}
		}

		s += (a[n-1] - md);
		auto la = lis.upper_bound(s);

		if (distance(lis.begin(), la) >= k) st = md;
		else ed = md-1;
	}

	double d = st / 100000.0;
	cout << fixed << setprecision(5) << d << endl;
}


















































	







Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

7 3
1 3 1 2 2 2 1

output:

1.66666

result:

ok found '1.66666', expected '1.66667', error '0.00001'

Test #2:

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

input:

1 1
1

output:

1.00000

result:

ok found '1.00000', expected '1.00000', error '0.00000'

Test #3:

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

input:

2 1
2 1

output:

1.50000

result:

ok found '1.50000', expected '1.50000', error '0.00000'

Test #4:

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

input:

3 2
2 4 4

output:

3.00000

result:

ok found '3.00000', expected '3.00000', error '0.00000'

Test #5:

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

input:

4 2
6 7 3 12

output:

6.50000

result:

ok found '6.50000', expected '6.50000', error '0.00000'

Test #6:

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

input:

5 3
17 23 13 12 21

output:

16.50000

result:

ok found '16.50000', expected '16.50000', error '0.00000'

Test #7:

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

input:

7 4
3 37 46 23 46 6 31

output:

23.00000

result:

ok found '23.00000', expected '23.00000', error '0.00000'

Test #8:

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

input:

10 5
30 91 36 53 74 91 37 1 76 3

output:

39.50000

result:

ok found '39.50000', expected '39.50000', error '0.00000'

Test #9:

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

input:

100 50
593 336 577 842 505 78 665 825 990 895 952 782 721 242 421 951 786 994 238 154 356 483 686 143 220 473 920 353 738 690 96 915 913 157 412 882 465 585 963 635 68 72 901 143 50 558 310 504 987 97 588 987 841 829 780 497 758 909 503 585 91 657 912 870 663 606 748 492 175 92 375 768 773 206 676 8...

output:

483.00000

result:

ok found '483.00000', expected '483.00000', error '0.00000'

Test #10:

score: 0
Accepted
time: 2ms
memory: 4004kb

input:

1000 500
74 796 330 98 801 45 160 90 432 788 873 109 714 307 407 94 360 136 198 912 744 902 549 398 478 590 663 983 956 267 201 332 610 249 698 268 700 755 902 485 327 539 203 397 721 971 951 378 674 159 269 182 473 993 84 832 808 908 73 608 842 411 465 886 348 153 924 871 729 1 279 949 475 71 982 3...

output:

395.00000

result:

ok found '395.00000', expected '395.00000', error '0.00000'

Test #11:

score: 0
Accepted
time: 24ms
memory: 4260kb

input:

10000 5000
821 298 787 377 804 127 552 321 868 2 375 982 196 201 154 323 49 881 81 182 265 584 179 530 130 213 469 887 667 771 637 634 872 528 560 552 168 299 603 668 244 275 838 524 874 508 751 52 83 224 957 910 349 102 285 236 897 44 797 332 834 978 534 730 260 178 842 877 961 219 378 552 294 796 ...

output:

390.50000

result:

ok found '390.50000', expected '390.50000', error '0.00000'

Test #12:

score: 0
Accepted
time: 607ms
memory: 11636kb

input:

200000 100000
240 455 802 920 682 343 84 855 428 864 623 114 400 668 175 66 376 309 970 367 526 980 47 962 793 90 494 352 721 69 920 233 442 103 812 38 644 987 718 897 756 752 490 436 476 46 690 434 869 179 519 74 833 349 970 328 2 77 964 782 383 536 461 736 540 906 249 296 8 35 259 865 267 831 604 ...

output:

391.33333

result:

ok found '391.33333', expected '391.33333', error '0.00000'

Test #13:

score: 0
Accepted
time: 818ms
memory: 14228kb

input:

199998 23727
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...

output:

1.00000

result:

ok found '1.00000', expected '1.00000', error '0.00000'

Test #14:

score: 0
Accepted
time: 111ms
memory: 14184kb

input:

199997 155
1 2 1 2 2 2 1 1 2 2 1 1 2 2 2 1 1 1 2 2 2 1 1 1 2 2 2 2 1 1 2 1 1 2 2 1 1 1 1 1 2 1 2 2 2 1 2 2 2 2 2 2 2 2 2 1 1 1 2 1 1 2 1 2 1 2 1 2 2 1 1 2 1 1 1 2 1 2 2 2 1 1 2 2 1 1 1 1 2 2 1 2 1 1 2 2 2 2 1 2 2 1 1 1 1 1 2 2 1 1 2 2 1 1 1 2 2 1 1 1 2 1 2 1 1 2 2 2 1 2 2 2 1 1 2 1 2 2 1 2 2 1 2 1 1...

output:

1.50028

result:

ok found '1.50028', expected '1.50029', error '0.00001'

Test #15:

score: 0
Accepted
time: 355ms
memory: 9476kb

input:

199997 5668
4 1 1 4 4 5 3 5 4 2 3 2 4 3 3 4 2 2 2 3 4 1 1 5 1 4 5 3 3 2 2 2 5 4 1 1 5 5 3 1 4 2 2 5 4 4 5 1 4 1 4 1 4 1 4 2 1 4 4 2 1 3 5 4 4 4 1 2 1 4 5 2 5 1 1 1 5 4 5 2 5 5 5 1 2 5 1 2 3 3 2 2 1 5 1 5 1 3 5 4 3 1 2 2 4 3 2 1 4 3 3 3 2 4 2 3 1 5 5 5 4 4 3 3 3 4 2 3 5 2 3 4 5 5 1 1 4 1 2 2 4 5 2 4 ...

output:

2.99534

result:

ok found '2.99534', expected '2.99534', error '0.00000'

Test #16:

score: 0
Accepted
time: 153ms
memory: 8152kb

input:

199999 40
7 8 8 2 10 1 2 10 1 4 3 7 2 2 5 7 3 7 9 2 9 1 9 9 7 9 4 5 5 6 10 4 8 1 8 2 7 1 8 4 4 10 4 7 3 2 7 8 10 9 6 9 4 5 7 7 2 9 4 7 1 7 3 6 3 1 7 10 6 1 4 7 1 4 2 3 5 1 5 10 5 5 10 5 10 4 7 3 2 4 3 8 8 6 1 5 1 3 8 5 1 9 5 1 4 2 5 2 8 4 3 6 5 5 10 7 6 6 4 9 6 10 3 4 8 7 2 6 9 7 6 9 2 8 9 7 5 8 4 8...

output:

5.50152

result:

ok found '5.50152', expected '5.50152', error '0.00000'

Test #17:

score: 0
Accepted
time: 170ms
memory: 5228kb

input:

199998 5
99 76 31 60 81 98 31 57 91 45 28 40 66 41 69 53 67 13 28 96 48 52 67 26 50 33 51 72 71 35 67 79 41 33 74 43 58 43 38 24 3 71 16 16 66 62 15 24 95 99 53 59 13 96 18 38 75 96 84 99 43 40 72 46 8 34 66 68 96 79 14 10 41 60 61 26 48 14 34 16 40 68 71 24 5 30 89 26 25 80 18 48 58 35 59 76 59 76 ...

output:

50.49864

result:

ok found '50.49864', expected '50.49864', error '0.00000'

Test #18:

score: 0
Accepted
time: 111ms
memory: 5180kb

input:

200000 3
772 660 48 48 244 440 394 172 177 335 139 778 502 336 571 880 552 539 797 111 428 654 720 549 679 510 503 426 290 358 2 358 649 811 327 237 829 767 867 111 122 223 725 141 310 69 682 694 529 315 743 23 335 485 272 426 321 449 370 202 779 345 165 826 117 371 785 115 709 333 816 379 682 479 9...

output:

500.84251

result:

ok found '500.84251', expected '500.84252', error '0.00001'

Test #19:

score: 0
Accepted
time: 470ms
memory: 11592kb

input:

200000 1
699 581 24 253 228 784 562 694 404 878 909 661 750 889 344 167 931 267 4 792 73 639 749 368 197 813 644 920 738 793 38 70 609 82 182 120 433 814 270 582 298 189 867 451 816 777 20 253 603 868 790 909 995 161 701 195 735 63 365 316 313 526 632 103 808 883 9 374 722 493 64 476 324 456 617 325...

output:

499.59279

result:

ok found '499.59279', expected '499.59279', error '0.00000'

Test #20:

score: 0
Accepted
time: 352ms
memory: 11588kb

input:

200000 4
378 431 131 583 87 928 543 8 589 805 763 742 240 448 773 535 254 624 987 17 177 809 721 536 943 969 320 5 100 129 267 428 132 476 313 295 911 664 89 212 439 660 468 218 932 519 763 604 656 580 603 850 957 29 711 161 68 595 420 390 289 378 892 609 141 763 536 328 407 562 176 57 480 873 176 3...

output:

499.67679

result:

ok found '499.67679', expected '499.67680', error '0.00001'

Test #21:

score: 0
Accepted
time: 58ms
memory: 4856kb

input:

199998 16
210 964 506 738 277 887 839 677 841 520 76 429 170 72 213 354 243 643 198 983 211 260 534 757 382 627 673 53 411 217 643 778 254 686 946 483 252 286 434 138 645 383 213 314 307 930 388 300 916 731 404 639 896 173 148 840 199 638 495 150 501 875 720 498 148 183 743 338 512 467 964 251 125 4...

output:

500.23866

result:

ok found '500.23866', expected '500.23866', error '0.00000'

Test #22:

score: 0
Accepted
time: 38ms
memory: 5212kb

input:

199997 64
806 405 901 749 787 281 354 782 269 701 310 547 153 765 430 791 165 436 435 469 234 773 86 803 761 537 438 375 949 698 190 350 678 466 940 270 91 517 671 455 532 646 607 855 854 878 82 375 30 111 664 367 111 984 368 86 68 562 912 523 409 487 678 381 80 488 787 895 744 282 460 295 750 622 4...

output:

500.51368

result:

ok found '500.51368', expected '500.51369', error '0.00001'

Test #23:

score: 0
Accepted
time: 197ms
memory: 4944kb

input:

200000 256
195 814 581 503 866 403 770 748 121 147 299 789 120 394 525 869 3 338 985 478 553 524 842 287 838 383 181 944 14 43 727 967 282 388 456 333 257 620 730 17 180 133 423 277 482 6 436 418 35 338 593 773 511 404 418 604 113 503 93 419 411 936 979 644 604 51 141 933 656 942 743 809 971 44 126 ...

output:

501.66200

result:

ok found '501.66200', expected '501.66200', error '0.00000'

Test #24:

score: 0
Accepted
time: 165ms
memory: 5024kb

input:

200000 1024
140 473 274 200 938 194 799 848 186 67 216 684 721 405 999 550 227 954 724 155 979 330 1000 374 269 794 932 341 109 151 890 949 933 604 257 994 541 429 459 922 179 401 416 606 152 856 796 347 296 458 617 924 462 893 480 492 487 159 247 835 125 360 590 331 98 590 861 231 499 501 764 977 8...

output:

500.44291

result:

ok found '500.44291', expected '500.44291', error '0.00000'

Test #25:

score: 0
Accepted
time: 596ms
memory: 11640kb

input:

200000 4096
771 970 259 420 680 18 837 168 619 692 481 699 260 716 54 327 679 142 72 767 427 455 88 59 446 356 581 687 42 774 7 589 788 19 168 795 695 337 575 617 355 674 859 634 377 452 624 870 460 678 615 180 756 391 158 556 1 401 116 281 584 741 681 488 182 313 133 700 420 685 835 196 228 580 545...

output:

498.05777

result:

ok found '498.05777', expected '498.05778', error '0.00001'

Test #26:

score: 0
Accepted
time: 616ms
memory: 11592kb

input:

200000 16384
817 531 180 287 36 430 748 306 973 587 836 438 141 429 627 907 72 612 93 356 441 425 932 167 180 562 828 199 502 704 348 407 585 652 912 228 435 771 880 983 310 948 441 368 812 142 904 589 409 664 649 582 280 414 628 748 960 330 696 645 446 602 158 947 698 842 79 651 158 141 578 241 867...

output:

492.40215

result:

ok found '492.40215', expected '492.40216', error '0.00001'

Test #27:

score: 0
Accepted
time: 646ms
memory: 12084kb

input:

199999 65536
83 411 712 696 154 545 837 556 456 947 972 535 104 487 105 138 769 409 237 877 899 717 546 263 978 653 766 535 736 393 804 135 980 496 71 325 778 234 476 335 622 478 762 523 642 244 784 473 547 857 755 487 1000 684 888 625 610 639 970 898 735 311 370 801 324 145 255 331 926 100 444 884 ...

output:

446.71428

result:

ok found '446.71428', expected '446.71429', error '0.00001'

Test #28:

score: 0
Accepted
time: 810ms
memory: 14352kb

input:

200000 200000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

output:

1.00000

result:

ok found '1.00000', expected '1.00000', error '0.00000'

Test #29:

score: 0
Accepted
time: 1288ms
memory: 14200kb

input:

200000 1
1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1...

output:

1000.00000

result:

ok found '1000.00000', expected '1000.00000', error '0.00000'

Test #30:

score: 0
Accepted
time: 639ms
memory: 11888kb

input:

200000 121198
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

output:

198.34148

result:

ok found '198.34148', expected '198.34148', error '0.00000'

Test #31:

score: 0
Accepted
time: 1086ms
memory: 12952kb

input:

200000 112621
1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1...

output:

218.55318

result:

ok found '218.55318', expected '218.55318', error '0.00000'

Test #32:

score: 0
Accepted
time: 638ms
memory: 11084kb

input:

200000 72765
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2...

output:

318.75175

result:

ok found '318.75175', expected '318.75175', error '0.00000'

Test #33:

score: 0
Accepted
time: 878ms
memory: 10256kb

input:

200000 102154
1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1...

output:

287.00000

result:

ok found '287.00000', expected '287.00000', error '0.00000'

Test #34:

score: 0
Accepted
time: 135ms
memory: 9520kb

input:

200000 5436
1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1...

output:

500.50000

result:

ok found '500.50000', expected '500.50000', error '0.00000'

Test #35:

score: 0
Accepted
time: 228ms
memory: 9472kb

input:

199999 7320
1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1 1000 1...

output:

500.49730

result:

ok found '500.49730', expected '500.49731', error '0.00001'

Test #36:

score: 0
Accepted
time: 257ms
memory: 12616kb

input:

200000 301
149 282 183 59 151 194 475 273 607 579 626 396 241 350 290 300 348 37 159 355 149 617 548 369 52 450 340 291 559 547 281 564 598 85 357 521 349 455 328 419 316 274 279 109 72 253 277 184 222 455 37 386 363 630 546 37 253 369 154 620 119 151 392 551 347 108 245 202 310 132 214 152 168 278 ...

output:

498.32300

result:

ok found '498.32300', expected '498.32301', error '0.00001'

Test #37:

score: 0
Accepted
time: 363ms
memory: 6824kb

input:

200000 293
808 601 825 441 567 527 535 495 740 777 794 968 821 744 684 812 443 577 653 645 945 376 440 744 443 811 592 942 662 602 709 682 780 720 753 771 769 795 671 482 962 484 706 686 799 475 841 551 733 417 549 969 398 828 512 391 693 932 924 649 756 400 776 650 460 595 459 503 820 393 851 849 9...

output:

525.43131

result:

ok found '525.43131', expected '525.43132', error '0.00001'

Test #38:

score: 0
Accepted
time: 313ms
memory: 12088kb

input:

200000 315
294 788 311 408 751 422 348 212 214 542 597 706 286 337 251 677 664 226 375 216 239 604 631 578 364 460 540 552 417 323 755 402 514 362 491 593 360 269 587 769 585 498 316 702 678 332 296 500 583 724 657 443 502 502 502 445 239 546 374 491 241 648 507 699 232 687 502 296 314 238 412 251 2...

output:

434.75707

result:

ok found '434.75707', expected '434.75708', error '0.00001'

Test #39:

score: 0
Accepted
time: 307ms
memory: 5008kb

input:

200000 2837
229 331 720 303 447 560 266 281 507 599 485 527 285 574 637 442 574 275 454 439 396 661 253 537 417 420 753 256 620 665 735 644 571 218 677 498 329 559 615 467 127 599 502 564 653 204 600 265 583 132 425 223 501 274 245 200 113 250 498 666 427 266 560 492 724 483 578 651 269 373 509 242 ...

output:

500.30797

result:

ok found '500.30797', expected '500.30797', error '0.00000'

Test #40:

score: 0
Accepted
time: 67ms
memory: 4964kb

input:

200000 2853
406 406 436 18 229 67 77 283 193 83 94 65 57 301 579 292 298 608 330 417 175 246 502 201 77 491 323 428 438 15 378 151 157 601 271 161 447 374 323 52 328 484 394 421 251 316 42 159 78 160 232 375 269 458 575 440 59 240 368 483 66 69 418 362 43 203 605 200 544 521 325 598 475 416 393 57 1...

output:

502.81841

result:

ok found '502.81841', expected '502.81841', error '0.00000'

Test #41:

score: 0
Accepted
time: 502ms
memory: 8060kb

input:

200000 3094
422 211 390 334 480 293 496 268 723 624 277 410 511 265 527 710 641 492 712 772 582 658 776 352 577 534 517 472 359 272 605 352 322 658 706 207 752 679 512 192 400 417 308 560 722 674 721 413 329 754 194 314 192 276 724 604 398 433 511 683 290 197 274 715 635 788 354 203 787 246 193 325 ...

output:

547.38655

result:

ok found '547.38655', expected '547.38655', error '0.00000'

Test #42:

score: 0
Accepted
time: 643ms
memory: 12692kb

input:

200000 28103
708 792 276 400 262 638 578 843 463 790 595 745 678 551 795 616 571 379 403 381 311 357 267 704 843 781 777 527 442 828 781 739 721 336 398 718 475 782 827 543 459 498 561 673 823 392 720 280 625 466 331 855 374 807 709 746 698 760 522 305 844 374 633 370 421 370 639 641 665 684 368 664...

output:

467.07723

result:

ok found '467.07723', expected '467.07723', error '0.00000'

Test #43:

score: 0
Accepted
time: 600ms
memory: 13276kb

input:

200000 29569
371 396 745 373 607 287 291 433 209 265 466 653 579 434 255 281 785 329 632 488 352 680 652 363 690 678 230 716 538 397 400 764 574 375 591 353 792 549 235 401 798 328 579 488 302 454 733 660 282 590 463 402 205 229 723 227 569 307 356 481 622 541 432 469 251 462 599 773 498 467 664 288...

output:

470.79955

result:

ok found '470.79955', expected '470.79955', error '0.00000'

Test #44:

score: 0
Accepted
time: 699ms
memory: 11572kb

input:

200000 32584
617 803 809 891 394 729 401 731 363 432 526 529 435 622 763 686 627 854 730 816 789 342 777 509 900 783 615 560 772 469 502 555 899 457 391 615 560 615 846 300 740 384 526 434 327 497 421 306 343 616 843 878 437 587 415 476 822 300 331 458 610 664 417 506 379 537 398 699 724 727 332 319...

output:

394.71567

result:

ok found '394.71567', expected '394.71567', error '0.00000'

Test #45:

score: 0
Accepted
time: 28ms
memory: 4436kb

input:

20000 1000
2 3 2 3 3 2 3 1 2 1 1 3 1 3 1 2 2 3 1 1 3 2 3 3 3 2 1 2 1 2 2 1 1 3 3 1 2 3 2 2 1 3 3 3 2 2 2 3 1 2 2 1 3 1 1 1 2 3 2 2 1 2 1 1 1 2 2 2 2 3 2 3 2 1 1 3 3 1 1 2 3 3 1 1 3 3 2 2 3 2 3 3 1 1 3 2 3 3 2 1 2 1 1 1 1 2 3 2 3 3 1 2 3 2 3 3 2 2 1 1 1 1 2 3 3 3 1 3 1 1 3 2 2 2 2 3 1 3 1 2 2 2 2 2 2...

output:

1.98611

result:

ok found '1.98611', expected '1.98611', error '0.00000'

Test #46:

score: 0
Accepted
time: 13ms
memory: 4696kb

input:

20000 400
2 2 3 1 3 3 3 2 3 2 3 3 3 1 2 2 3 2 3 1 2 1 3 3 1 3 3 3 3 3 1 2 2 1 2 1 2 2 3 3 1 3 1 1 1 1 1 3 3 2 2 3 3 2 2 3 2 3 2 3 2 2 3 3 3 1 1 1 1 2 2 2 3 3 3 1 1 3 1 3 1 1 3 2 3 1 1 1 1 2 2 2 3 1 1 2 1 1 1 3 1 1 3 1 1 3 1 3 1 1 2 1 3 2 3 1 1 2 2 1 1 1 3 1 1 3 1 1 2 1 2 3 2 2 1 1 1 1 1 1 2 2 1 3 2 ...

output:

1.99221

result:

ok found '1.99221', expected '1.99222', error '0.00001'

Test #47:

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

input:

200000 1000
2 1 1 2 1 3 2 3 2 3 3 1 3 2 1 2 3 3 3 3 3 1 1 3 1 2 2 2 2 3 2 1 3 3 1 2 1 3 1 1 1 2 3 2 3 1 3 1 3 3 3 1 3 3 2 2 3 3 3 2 1 2 1 2 1 1 2 1 2 2 2 1 3 3 1 1 1 3 2 3 1 3 2 2 2 2 1 3 3 2 3 1 2 3 3 1 1 2 2 2 1 3 3 2 1 1 2 2 2 1 1 3 1 2 3 1 3 2 3 2 1 2 3 2 2 1 2 2 1 3 1 2 1 3 2 2 3 1 2 2 2 1 3 2 ...

output:

1.99902

result:

ok found '1.99902', expected '1.99903', error '0.00001'

Test #48:

score: 0
Accepted
time: 225ms
memory: 11224kb

input:

200000 4000
1 2 2 3 1 2 2 2 2 2 2 1 2 2 2 2 1 3 3 1 1 3 2 2 3 1 1 3 3 2 3 3 2 2 1 3 1 3 3 2 3 2 3 3 1 1 1 3 3 2 2 1 2 3 2 3 1 2 1 2 1 2 3 1 1 2 2 2 3 1 3 1 2 3 1 1 2 1 1 2 1 3 3 2 3 1 2 3 1 1 2 2 2 3 1 1 1 1 1 2 3 1 1 3 2 1 1 3 2 1 3 2 3 2 1 2 2 1 3 1 3 1 1 2 3 1 1 2 3 3 1 3 3 3 1 3 3 2 3 1 3 2 2 1 ...

output:

2.00000

result:

ok found '2.00000', expected '2.00000', error '0.00000'

Test #49:

score: 0
Accepted
time: 575ms
memory: 9212kb

input:

195554 67274
1 1 1000 1 1 1000 1000 1000 1000 1 1000 1000 1000 1 1000 1 1 1 1000 1 1000 1000 1000 1 1 1000 1 1000 1000 1000 1 1000 1000 1 1000 1000 1 1 1000 1 1 1 1 1000 1 1 1 1 1 1000 1 1000 1 1 1 1 1 1000 1000 1 1000 1000 1000 1000 1 1000 1 1 1000 1 1000 1000 1000 1000 1 1000 1000 1000 1000 1 1 10...

output:

400.60000

result:

ok found '400.60000', expected '400.60000', error '0.00000'

Test #50:

score: 0
Accepted
time: 598ms
memory: 10628kb

input:

198298 73157
1000 1000 1000 1000 1000 1000 1 30 1 1000 30 1 30 30 1000 1000 30 30 30 1 1000 1 1 1000 1000 30 1000 1000 1 1 1000 30 1 30 30 30 30 1000 30 30 1000 30 1 1000 1 30 1000 1000 1 30 1000 1 1000 1 1000 30 1 30 30 30 1000 30 1000 1000 1000 1000 30 1 1000 30 1 1000 1000 30 30 1000 1 30 1 1000 ...

output:

30.00000

result:

ok found '30.00000', expected '30.00000', error '0.00000'

Test #51:

score: 0
Accepted
time: 715ms
memory: 14244kb

input:

199335 191157
500 1000 500 500 500 1000 1000 500 500 500 500 500 1000 1000 500 500 1000 1000 500 1000 1000 500 500 500 500 1000 1000 500 500 1000 1000 1000 500 1000 500 1000 1000 1000 500 1000 500 500 1000 1000 500 500 1000 500 500 500 500 1000 500 1000 1000 500 1000 500 1000 1000 500 1000 500 1000 ...

output:

500.00000

result:

ok found '500.00000', expected '500.00000', error '0.00000'

Test #52:

score: 0
Accepted
time: 597ms
memory: 10176kb

input:

193286 78014
1 1 1 443 443 443 1000 1 443 443 1 443 443 1 443 1000 1 443 1 443 1000 443 1000 1000 443 1 1000 1 443 1000 1 1000 1000 1000 443 1 1000 443 1000 1000 443 1 1000 443 443 1000 1000 1000 1 1 1000 1 1000 1 443 443 1000 1000 1 1 443 1000 1000 1000 1000 443 1 443 1000 443 443 443 1 1 1000 443 ...

output:

400.60000

result:

ok found '400.60000', expected '400.60000', error '0.00000'

Test #53:

score: 0
Accepted
time: 559ms
memory: 10516kb

input:

185323 113454
202 1 1 1000 202 202 1000 202 1 202 202 1 1000 1000 202 1 1 202 1 1000 1 202 202 202 202 1000 202 1 1000 1 1 1 1 202 1000 1000 1000 202 1000 1 1000 1000 202 1000 202 202 1 202 1 1 202 202 202 202 1000 202 1000 1000 202 202 1000 1 1 1 1 202 202 202 1000 1 1000 202 1 1000 1000 1000 1000 ...

output:

101.50000

result:

ok found '101.50000', expected '101.50000', error '0.00000'

Test #54:

score: 0
Accepted
time: 570ms
memory: 9944kb

input:

188823 96736
1000 1000 1 1000 1000 239 1000 239 239 1 1 1 1000 239 1000 1000 1000 1000 239 239 239 1000 1 1000 1 1 1000 1000 1000 1000 1 1000 239 1000 239 239 1 1 1 239 1 1000 1 1 1000 1 1000 1 1000 1 239 1000 1000 1000 1 1 239 239 239 1 239 1 239 1000 1 1 239 239 1 1 1 1 1 1000 239 1 1000 239 1000 ...

output:

239.00000

result:

ok found '239.00000', expected '239.00000', error '0.00000'

Test #55:

score: 0
Accepted
time: 589ms
memory: 10792kb

input:

196699 128431
1000 314 314 1000 1000 1 314 314 1000 1000 314 1 1 314 314 314 1 314 1 1000 314 1000 314 314 1 1 314 1 1 314 1000 1000 1 1000 1000 1000 314 1000 1 314 1000 1 1000 314 1000 1 314 1 1000 1000 1000 1000 314 1 314 314 314 1000 1 1000 1 1 314 1 1000 314 1 314 314 1 1000 314 1000 314 314 314...

output:

157.50000

result:

ok found '157.50000', expected '157.50000', error '0.00000'

Test #56:

score: 0
Accepted
time: 646ms
memory: 10824kb

input:

198829 92637
694 694 1 1 694 1000 694 1 1 1 1 1000 1 1000 1 1 1000 1000 1 694 1 694 1000 694 1 694 1000 1 694 1 1 1000 1 1000 694 1000 1 694 1000 1000 1000 1 1 1000 1000 694 1 694 1000 694 694 1 694 1 1 694 1000 1000 1000 694 1000 1 1000 1 1 694 694 694 1 1000 1 694 1 1 1 1 1000 1000 1000 1000 1 100...

output:

440.71428

result:

ok found '440.71428', expected '440.71429', error '0.00001'

Test #57:

score: 0
Accepted
time: 615ms
memory: 8904kb

input:

182860 46210
1 1000 1 1000 1 1 1000 1 1 1000 1 1 1 1000 1000 1000 1000 1 1 1000 1 1 1000 1000 1 1000 1000 1000 1000 1 1000 1 1 1000 1000 1000 1000 1000 1000 1 1 1000 1 1000 1000 1000 1 1 1 1 1000 1 1000 1000 1000 1000 1000 1 1 1 1000 1000 1 1000 1000 1 1000 1000 1000 1000 1000 1000 1000 1000 1 1000 ...

output:

445.00000

result:

ok found '445.00000', expected '445.00000', error '0.00000'

Test #58:

score: 0
Accepted
time: 536ms
memory: 8900kb

input:

185589 61131
1000 1000 1000 1000 1000 1 1000 1 1 1000 1 1 1000 1 1000 1000 1 1000 1000 1000 1 1 1 1 1000 1000 1 1000 1000 1000 1000 1 1 1000 1 1000 1000 1000 1 1 1000 1000 1 1 1000 1000 1 1000 1000 1 1000 1 1000 1000 1000 1000 1 1 1 1000 1000 1 1 1 1000 1000 1000 1000 1 1000 1000 1 1000 1 1000 1 100...

output:

400.60000

result:

ok found '400.60000', expected '400.60000', error '0.00000'

Test #59:

score: 0
Accepted
time: 513ms
memory: 9144kb

input:

184307 4198
1000 1 1 1 1 1000 1 1 1 1000 1000 1 1 1000 1000 1000 1 1000 1 1000 1 1000 1000 1000 1000 1 1000 1 1000 1 1000 1 1 1000 1000 1000 1 1000 1 1000 1000 1 1 1 1000 1000 1 1 1000 1 1000 1 1000 1 1 1 1000 1 1 1 1 1000 1 1000 1 1 1 1 1000 1 1 1000 1000 1 1 1000 1 1000 1000 1000 1 1 1000 1 1 1000...

output:

499.91692

result:

ok found '499.91692', expected '499.91693', error '0.00001'

Test #60:

score: 0
Accepted
time: 672ms
memory: 9168kb

input:

197290 21040
1000 1 1000 1 1000 1000 1000 1 1000 1000 1000 1000 1000 1 1 1 1000 1 1000 1000 1000 1 1000 1 1000 1 1000 1000 1000 1 1 1 1 1 1000 1000 1000 1 1 1 1 1000 1000 1 1000 1 1000 1000 1000 1000 1 1000 1 1 1000 1000 1 1000 1000 1000 1 1 1 1000 1 1 1 1000 1000 1 1000 1 1 1000 1 1 1000 1 1000 1 1...

output:

488.64356

result:

ok found '488.64356', expected '488.64357', error '0.00001'

Test #61:

score: 0
Accepted
time: 666ms
memory: 9168kb

input:

191881 27563
1000 1 1 1 1 1 1 1 1 1000 1000 1000 1000 1 1000 1 1 1 1 1 1 1 1 1000 1 1 1 1000 1000 1 1000 1 1000 1 1 1 1000 1 1000 1 1000 1000 1000 1 1 1 1000 1000 1000 1000 1 1000 1000 1000 1 1000 1000 1000 1000 1000 1 1000 1000 1000 1000 1000 1 1 1 1000 1 1 1 1000 1000 1 1000 1 1 1 1000 1000 1 1000...

output:

482.00000

result:

ok found '482.00000', expected '482.00000', error '0.00000'

Test #62:

score: 0
Accepted
time: 910ms
memory: 14092kb

input:

196833 128889
901 901 829 829 901 901 901 901 901 829 901 829 829 829 901 829 901 901 901 901 829 901 901 901 829 829 901 829 829 829 829 901 829 829 901 901 829 829 901 829 901 901 901 901 829 901 901 901 829 901 829 901 829 901 901 901 829 829 901 829 901 901 829 901 901 829 901 829 901 829 829 82...

output:

829.00000

result:

ok found '829.00000', expected '829.00000', error '0.00000'

Test #63:

score: 0
Accepted
time: 761ms
memory: 13220kb

input:

182953 128584
159 725 725 159 725 159 725 725 159 159 725 725 725 159 159 725 159 159 725 725 159 725 159 725 725 725 159 725 725 159 159 725 159 159 159 159 159 725 725 725 159 159 159 725 159 159 159 725 725 159 159 725 725 159 159 725 725 159 159 159 725 159 159 159 725 725 159 159 159 725 725 72...

output:

159.00000

result:

ok found '159.00000', expected '159.00000', error '0.00000'

Test #64:

score: 0
Accepted
time: 580ms
memory: 9436kb

input:

199482 88243
712 137 712 712 137 712 712 137 712 712 137 137 137 137 137 712 137 137 137 712 137 137 137 712 137 712 712 712 137 137 137 137 712 712 712 712 712 137 712 137 712 712 137 712 137 712 712 137 712 712 137 712 712 712 712 137 137 712 712 137 137 137 712 712 137 137 712 137 712 137 712 137...

output:

328.66666

result:

ok found '328.66666', expected '328.66667', error '0.00001'

Test #65:

score: 0
Accepted
time: 545ms
memory: 8984kb

input:

184372 83031
566 120 120 120 566 566 120 566 120 120 120 120 566 120 120 566 566 120 120 566 566 566 566 120 120 566 566 566 566 566 566 120 120 120 120 566 566 566 120 566 566 566 566 120 120 566 120 120 120 120 120 566 120 120 120 120 120 566 120 120 120 120 566 566 120 566 120 120 566 566 566 120...

output:

268.66666

result:

ok found '268.66666', expected '268.66667', error '0.00001'

Test #66:

score: 0
Accepted
time: 801ms
memory: 13124kb

input:

180433 128410
988 675 675 988 675 988 988 675 675 675 675 675 675 988 675 675 988 988 988 988 988 675 988 988 675 675 988 675 675 988 988 675 675 988 988 988 988 988 988 988 988 988 675 675 675 988 675 988 988 988 675 675 675 988 988 675 675 675 988 988 988 675 988 988 988 988 675 675 988 675 988 98...

output:

675.00000

result:

ok found '675.00000', expected '675.00000', error '0.00000'

Extra Test:

score: 0
Extra Test Passed