QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#751862#8779. Square of Trianglescyj888WA 9ms3752kbC++117.5kb2024-11-15 21:03:412024-11-15 21:03:42

Judging History

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

  • [2024-11-15 21:03:42]
  • 评测
  • 测评结果:WA
  • 用时:9ms
  • 内存:3752kb
  • [2024-11-15 21:03:41]
  • 提交

answer

#include <bits/stdc++.h>
//#define int long long
#define fi first
#define se second 
#define pb push_back
#define gt()
#define ott(i, l, r) for (register int i = (l); i <= (r); i ++)
#define tto(i, l, r) for (register int i = (r); i >= (l); i --)
using namespace std;
typedef long long ll;
typedef double db;
typedef long double ld;
int read () {
	int x = 0; bool f = false; char c = getchar ();
	while (!isdigit (c)) f |= (c == '-'), c = getchar ();
	while (isdigit (c)) x = (x << 3) + (x << 1) + (c ^ 48), c = getchar ();
	return f ? -x : x;
}
const int N = 1100, mod = 1e9 + 7;
const ld eps = 1e-6;
int T; int l2[5][4], id[5];
ld p, s;
ld ib[5][4];
ld sl, xl; ld l[5][4];
inline bool cmp (const ld &a1, const ld &a2) {
	return fabs (a1 - a2) <= eps;
}
inline bool irt (ld* jb) {
	return cmp (jb[1] * jb[1] + jb[2] * jb[2], jb[3] * jb[3]);
}
//level 0
inline bool test1 () {
	// if (irt (ib[1]) || irt (ib[2]) || irt (ib[3]) || irt (ib[4])) return false;
	return cmp (ib[1][3], sl) && cmp (ib[2][3], sl) && cmp (ib[3][3], sl) && cmp (ib[4][3], sl) && cmp (ib[1][2], ib[2][1]) && cmp (ib[2][2], ib[3][1]) && cmp (ib[3][2], ib[4][1]) && cmp (ib[4][2], ib[1][1]);
}
inline bool test2 () {
	if (!cmp (ib[1][1] + ib[3][2], xl) || !cmp (ib[2][1] + ib[4][2], xl)) return false;
	return cmp (ib[1][3], sl) && cmp (ib[2][3], sl) && cmp (ib[3][3], sl) && cmp (ib[4][3], sl) && cmp (ib[1][2], ib[3][1]) && cmp (ib[2][2], ib[4][1]) && cmp (ib[1][1] + ib[3][2], ib[2][1] + ib[4][2]);//sl * pow (2,0.5)
}
//level 1
inline bool test3 () {
	if (!irt (ib[2]) || !irt (ib[3])) return false;
	return cmp (ib[1][1] + ib[2][1], sl) && cmp (ib[2][2] + ib[3][2], sl) && cmp (ib[3][1], sl) && cmp (ib[1][3], ib[4][1]) && cmp (ib[2][3], ib[4][2]) && cmp (ib[3][3], ib[4][3]);
}
inline bool test4 () {
	if (!irt (ib[2])) return false;
	return cmp (ib[1][1] + ib[2][1], sl) && cmp (ib[2][2], sl) && cmp (ib[3][1], sl) && cmp (ib[4][1] + ib[3][2], ib[1][3]) && cmp (ib[3][3], ib[4][2]) && cmp (ib[2][3], ib[4][3]);
}
inline bool test5 () {
	if (!irt (ib[2])) return false;
	return cmp (ib[1][1] + ib[4][1] + ib[2][1], sl) && cmp (ib[2][2], sl) && cmp (ib[3][1], sl) && cmp (ib[3][2], ib[1][3]) && cmp (ib[3][3], ib[4][3]) && cmp (ib[2][3], ib[4][2]);
}
inline bool test6 () {
	if (!irt (ib[4])) return false;
	return cmp (ib[1][1] + ib[3][1], sl) && cmp (ib[2][1] + ib[4][1], sl) && cmp (ib[4][2], sl) && cmp (ib[1][3], ib[2][3]) && cmp (ib[2][2], ib[3][2]) && cmp (ib[3][3], ib[4][3]);
}
inline bool test7 () {
	if (!irt (ib[4])) return false;//no xl
	return cmp (ib[1][1] + ib[2][1] + ib[3][1], sl) && cmp (ib[4][1], sl) && cmp (ib[4][2], sl) && cmp (ib[1][3], ib[2][2]) && cmp (ib[2][3], ib[3][2]) && cmp (ib[3][3], ib[4][3]);
}
inline bool test8 () {
	if (!irt (ib[4]) || !cmp (ib[3][3], xl)) return false;
	return cmp (ib[1][1] + ib[2][1], sl) && cmp (ib[3][1] + ib[4][1], sl) && cmp (ib[4][2], sl) && cmp (ib[1][3], ib[2][2]) && cmp (ib[2][3], ib[3][3]) && cmp (ib[3][2], ib[4][3]);
}
inline bool test9 () {//irt?
	return cmp (ib[1][1] + ib[2][2], sl) && cmp (ib[4][3], sl) && cmp (ib[3][3], sl) && cmp (ib[2][1] + ib[3][1], ib[1][3]) && cmp (ib[2][3], ib[4][1]) && cmp (ib[3][2], ib[4][2]);
}
inline bool test10 () {
	if (!irt (ib[2])) return false;
	return cmp (ib[1][1] + ib[2][2], sl) && cmp (ib[2][1] + ib[3][1], sl) && cmp (ib[4][3], sl) && cmp (ib[1][3], ib[4][1]) && cmp (ib[2][3], ib[3][2]) && cmp (ib[3][3], ib[4][2]);
}
inline bool test11 () {
	if (!irt (ib[4])) return false;
	return cmp (ib[1][1] + ib[4][1], sl) && cmp (ib[4][2], sl) && cmp (ib[2][1] + ib[3][1], sl) && cmp (ib[1][3], ib[2][3]) && cmp (ib[2][2], ib[3][2]) && cmp (ib[3][3], ib[4][3]);
}
inline bool test12 () {
	if (!irt (ib[4])) return false;
	return cmp (ib[1][1] + ib[2][1], sl) && cmp (ib[4][2], sl) && cmp (ib[3][1] + ib[4][1], sl) && cmp (ib[1][3], ib[2][2]) && cmp (ib[2][3], ib[3][3]) && cmp (ib[3][2], ib[4][3]);
}
inline bool test13 () {
	if (!irt (ib[4])) return false;//no xl
	return cmp (ib[1][1] + ib[2][2], sl) && cmp (ib[4][1], sl) && cmp (ib[4][2], sl) && cmp (ib[2][1] + ib[3][1], ib[1][3]) && cmp (ib[2][3], ib[3][2]) && cmp (ib[3][3], ib[4][3]);
}
inline bool test14 () {
	return cmp (ib[1][1] + ib[2][1], sl) && cmp (ib[3][3], sl) && cmp (ib[4][3], sl) && cmp (ib[1][3], ib[2][2]) && cmp (ib[3][1] + ib[4][2], ib[2][3]) && cmp (ib[3][2], ib[4][1]);
}
inline bool test15 () {
	return cmp (ib[1][1] + ib[2][1], sl) && cmp (ib[3][3], sl) && cmp (ib[4][3], sl) && cmp (ib[1][3], ib[4][1]) && cmp (ib[2][3] + ib[3][2], ib[4][2]) && cmp (ib[2][2], ib[3][1]);
}
inline bool test16 () {
	if (!irt (ib[4])) return false;//no xl
	return cmp (ib[1][1] + ib[2][3], sl) && cmp (ib[4][1], sl) && cmp (ib[4][2], sl) && cmp (ib[1][3], ib[3][3]) && cmp (ib[2][1], ib[3][1]) && cmp (ib[2][2] + ib[3][2], ib[4][3]);
}
//level 2
inline bool test17 () {
	return cmp (ib[2][3], sl) && cmp (ib[4][3], sl) && cmp (ib[2][1] + ib[3][1] + ib[4][1], ib[1][3]) && cmp (ib[3][1], ib[2][2]) && cmp (ib[3][2], ib[4][2]);
}
inline bool test18 () {
	if (!irt (ib[4])) return false;
	return cmp (ib[3][1] + ib[4][1], sl) && cmp (ib[4][2] + ib[2][1], sl) && cmp (ib[1][3], ib[2][3]) && cmp (ib[2][2], ib[3][3]) && cmp (ib[3][2], ib[4][3]);
}
inline bool test19 () {
    return cmp (ib[2][3], sl) && cmp (ib[3][1] + ib[4][1], sl) && cmp (ib[3][2], ib[4][2]) && cmp (ib[2][1] + ib[4][3], ib[1][3]) && cmp (ib[2][2], ib[3][3]);
}
inline bool test20 () {
	return cmp (ib[2][3], sl) && cmp (ib[4][3], sl) && cmp (ib[2][1] + ib[3][2], ib[1][3]) && cmp (ib[3][1] + ib[4][1], ib[2][2]) && cmp (ib[3][3], ib[4][2]);
}
inline bool test21 () {
	return cmp (ib[2][3], sl) && cmp (ib[3][3] + ib[4][1], sl) && cmp (ib[1][3], ib[4][3]) && cmp (ib[2][2] + ib[3][1], ib[4][2]) && cmp (ib[2][1], ib[3][2]);
}
inline bool test22 () {
	return cmp (ib[2][3], sl) && cmp (ib[3][3], sl) && cmp (ib[2][1], ib[3][1]) && cmp (ib[4][1], ib[2][2]) && cmp (ib[4][2], ib[3][2]) && cmp (ib[4][3], ib[1][3]);
}
bool sol () {
	sl = 0; ott (i, 1, 4) {
		ott (j, 1, 3) l2[i][j] = read (); sort (l2[i] + 1, l2[i] + 4);
		p = 0; ott (j, 1, 3) p += l[i][j] = (ld)sqrt (l2[i][j]); p /= 2.0;//, printf ("%0.10Lf\n", l[i][j])
		s = p; ott (j, 1, 3) s *= p - l[i][j]; sl += (ld)sqrt (s); id[i] = i;
	}
	sl = (ld)sqrt (sl), xl = sl * pow (2, 0.5); //printf ("%.10Lf\n", sl); 
	do {
		ott (i, 1, 4) 
			ott (j, 1, 3)
				ib[i][j] = l[id[i]][j];
		do {
			do {
				do {
					do {
						if (test1 ()) return true;  if (test2 ()) return true;
						if (!cmp (ib[1][2], sl) || !irt (ib[1])) continue;
						if (test3 ()) return true;  if (test4 ()) return true;
						if (test5 ()) return true;  if (test6 ()) return true;
						if (test7 ()) return true;  if (test8 ()) return true;
						if (test9 ()) return true;  if (test10 ()) return true;
						if (test11 ()) return true; if (test12 ()) return true;
						if (test13 ()) return true; if (test14 ()) return true;
						if (test15 ()) return true; if (test16 ()) return true;
						if (!cmp (ib[1][1], sl)) continue;
						if (test17 ()) return true; if (test18 ()) return true;
						if (test19 ()) return true; if (test20 ()) return true;
						if (test21 ()) return true; if (test22 ()) return true;
					} while (next_permutation (ib[4] + 1, ib[4] + 4));
				} while (next_permutation (ib[3] + 1, ib[3] + 4));
			} while (next_permutation (ib[2] + 1, ib[2] + 4));
		} while (next_permutation (ib[1] + 1, ib[1] + 4));
	} while (next_permutation (id + 1, id + 5));
	return false;
}
int main () {
	T = read (); while (T --) puts (sol () ? "1" : "0");
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
1 1 2
2 1 1
2 1 1
1 2 1
1 1 1
1 1 1
1 1 1
1 1 1
5 125 130
125 20 145
45 130 145
145 145 80

output:

1
0
1

result:

ok 3 lines

Test #2:

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

input:

20
1998001 7984010 9982009
1998001 7984010 1994005
7984010 9978013 9982009
9978013 1994005 7984010
9958045 7968034 9962037
7968034 1994005 9962037
9958045 1990013 7968034
1994005 1990013 7968034
7952074 9938097 1986025
7952074 9942085 1990013
7952074 9942085 9938097
1986025 7952074 1990013
7936130 9...

output:

1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

result:

ok 20 lines

Test #3:

score: 0
Accepted
time: 5ms
memory: 3636kb

input:

20
1148639 3581051 1216206
9999916 7026968 270268
6013463 6013463 6756700
6013463 6013463 6756700
2608850 8630930 9445800
9862940 6448880 6939290
8631650 3682160 5184310
7504700 6652150 1917140
2359505 3170711 2299108
4027811 6760781 2960240
4679918 6106006 3178400
8153446 7975057 5222088
8849500 88...

output:

0
0
0
1
1
1
1
0
1
1
1
1
1
0
0
0
0
1
1
1

result:

ok 20 lines

Test #4:

score: 0
Accepted
time: 9ms
memory: 3632kb

input:

20
7300000 8100000 10000000
8100000 7300000 1000000
1000000 7300000 2900000
2900000 10000000 7300000
61728 8950560 9999936
7901184 4012320 4999968
8950560 3950592 4999968
4012320 123456 4999968
4494200 9932182 9932182
8381683 112355 9932182
5505395 9460291 9932182
9999595 4494200 9190639
5994936 671...

output:

1
1
0
0
0
1
0
0
0
0
0
1
1
0
0
0
0
1
0
0

result:

ok 20 lines

Test #5:

score: 0
Accepted
time: 8ms
memory: 3596kb

input:

20
10000000 5078125 3828125
78125 5000000 5078125
1250000 10000000 6250000
5000000 6250000 1250000
7079600 5663680 1415920
7079600 796455 9999935
5663680 9999935 5752175
5663680 88495 5752175
4410468 1135368 9999972
5676840 4541472 5676840
4541472 5676840 5676840
8078580 742356 6288192
8345560 44707...

output:

1
1
0
0
0
1
1
1
1
1
1
0
0
1
0
1
0
1
0
0

result:

ok 20 lines

Test #6:

score: 0
Accepted
time: 6ms
memory: 3700kb

input:

20
10000000 5078125 3828125
2031250 78125 1953125
703125 5078125 2031250
5000000 10000000 5000000
5000000 10000000 5000000
5000000 2890625 390625
6250000 1250000 10000000
1250000 2890625 3515625
6711400 9999986 3288586
4899322 4295296 604026
6979856 9999986 4899322
6711400 6979856 268456
9767552 645...

output:

1
1
1
0
1
1
0
1
1
0
1
1
0
0
1
0
0
1
0
0

result:

ok 20 lines

Test #7:

score: 0
Accepted
time: 9ms
memory: 3592kb

input:

20
3063559 8439238 9999919
3063559 9999919 3005756
8381435 9999919 8439238
8381435 3005756 9999919
6923007 4319483 4852022
2130156 4319483 769223
9999899 3076892 6923007
6923007 2899379 4852022
3271584 4999968 493824
6049344 61728 5246880
4999968 4999968 9999936
5246880 3271584 3950592
7398784 99999...

output:

1
1
1
1
0
1
0
0
1
0
0
0
0
1
0
0
0
1
0
0

result:

ok 20 lines

Test #8:

score: 0
Accepted
time: 7ms
memory: 3624kb

input:

20
5524800 4475088 9999888
55248 4475088 4530336
9999888 5580048 5524800
55248 4530336 5580048
7123920 8940020 2698748
6206580 7677584 8296048
6252164 6473284 9023920
7524124 4702788 5944204
7901120 7901120 6320896
6320896 7901120 7901120
9135670 9999855 913567
1506151 1111095 98764
2222220 3555552 ...

output:

1
0
0
1
0
1
1
0
0
1
1
1
1
1
0
1
0
0
1
0

result:

ok 20 lines

Test #9:

score: 0
Accepted
time: 7ms
memory: 3632kb

input:

20
3404348 6811514 5073762
1575108 4047618 3481696
6589302 6594868 4559458
5124278 2664770 3517574
5393960 2157584 5393960
5393960 2157584 5393960
2199076 9999572 2821456
2157584 8972645 8723693
2091488 4248335 9999927
9999927 9542414 7385567
4248335 9542414 9999927
9999927 2091488 7385567
5867350 7...

output:

0
0
1
0
1
0
1
1
0
1
1
0
1
0
1
1
0
1
0
1

result:

ok 20 lines

Test #10:

score: 0
Accepted
time: 7ms
memory: 3752kb

input:

20
4753532 8244880 6269438
3937444 762818 4555348
7280126 5303718 8327606
9077712 1705788 9903866
4999968 9999936 4999968
555552 7222176 9999936
6543168 1543200 4999968
7222176 6543168 61728
1360000 6560000 3664000
6560000 6560000 4608000
10000000 2960000 6560000
1152000 2320000 3664000
1709400 5470...

output:

0
1
0
0
1
0
1
1
0
0
1
1
1
1
0
1
0
1
0
0

result:

ok 20 lines

Test #11:

score: 0
Accepted
time: 6ms
memory: 3632kb

input:

20
2615382 9846144 9999990
9846144 9999990 9999990
9999990 2769228 2615382
9999990 2769228 9999990
9191125 9999944 4779385
1323522 9191125 6544081
6544081 9999944 9191125
1323522 9191125 4779385
7028892 1743768 1991340
7028892 7028892 1743768
8234460 4865328 7028892
2378844 7599384 9999756
9731530 4...

output:

1
1
0
1
1
1
0
0
1
0
0
0
1
1
1
1
0
1
1
1

result:

ok 20 lines

Test #12:

score: 0
Accepted
time: 7ms
memory: 3712kb

input:

20
4999960 6173420 3316300
4999960 4999960 9999920
459180 459180 918360
1632640 459180 3316300
6328125 5078125 156250
5078125 6328125 10000000
6328125 5078125 10000000
6328125 156250 5078125
9979836 8089680 8280504
7601784 7634364 7141536
5377824 7028244 4492560
5815068 7928868 4377312
720000 800000...

output:

1
1
0
1
0
0
1
1
0
0
1
1
0
0
1
1
1
1
0
1

result:

ok 20 lines

Test #13:

score: 0
Accepted
time: 7ms
memory: 3564kb

input:

20
9999916 1689175 5743195
5743195 878371 4999958
9999916 4999958 4999958
1689175 878371 4999958
6301605 4049556 6301605
2024778 4049556 2024778
7293333 330576 6301605
9999924 6115656 3388404
617280 7901184 6543168
617280 123456 987648
4999968 4999968 9999936
1543200 6543168 4999968
3828125 1953125 ...

output:

1
0
1
1
0
1
1
1
1
0
1
0
0
1
0
0
0
0
0
1

result:

ok 20 lines

Test #14:

score: 0
Accepted
time: 5ms
memory: 3620kb

input:

20
9999720 2888808 3555456
7610898 3555456 7610898
4944306 8805309 1805505
7610898 7610898 3555456
4999968 4999968 9999936
6543168 1543200 2530848
987648 9999936 6543168
1543200 987648 2530848
4999967 2358475 5471662
754712 5471662 9999934
754712 4999967 2358475
4999967 9999934 4999967
5371860 20661...

output:

0
1
1
0
0
1
1
1
0
1
0
0
1
0
1
1
1
1
1
0

result:

ok 20 lines

Test #15:

score: 0
Accepted
time: 7ms
memory: 3632kb

input:

20
4999968 4999968 9999936
4999968 5555520 555552
5555520 3402756 1180548
1180548 2222208 1736100
2207678 4505792 4722268
6840476 4330164 8510736
5829672 8496568 9904306
4191336 5368108 9200414
2644740 821072 2890020
3199420 6624380 4992680
6593608 7493780 2880304
9678732 5684644 8431388
9999920 433...

output:

1
0
0
1
0
0
0
1
1
0
1
1
1
1
0
1
0
1
1
0

result:

ok 20 lines

Test #16:

score: 0
Accepted
time: 8ms
memory: 3752kb

input:

20
8136144 6408528 8054156
7239584 6536596 1012996
1884652 5391096 6567204
1480764 5442988 5704872
9999936 4999968 4999968
902772 5069412 6944400
4999968 902772 5069412
3611088 4999968 277776
6358573 6634433 717236
2110329 2013778 1558609
9737858 9999925 6634433
717236 6634433 6634433
8820735 572387...

output:

0
1
0
0
0
1
1
0
0
0
1
1
1
0
1
0
1
1
1
0

result:

ok 20 lines

Test #17:

score: 0
Accepted
time: 8ms
memory: 3608kb

input:

20
1479580 2551000 2499980
1479580 5408120 2499980
4999960 9999920 4999960
408160 5408120 4999960
1418208 6119592 6943616
4717024 1703128 4933672
8516320 2379048 9953024
6649448 9056784 2567000
6639370 1661665 8301033
6639370 8297389 8301033
1658021 6639370 1661665
8297389 6639370 1658021
8390964 71...

output:

1
0
1
0
0
1
0
1
0
1
1
0
0
0
0
0
0
1
0
1

result:

ok 20 lines

Test #18:

score: 0
Accepted
time: 6ms
memory: 3576kb

input:

20
7346880 3775480 2551000
408160 3775480 3775480
4999960 3775480 204080
4999960 9999920 4999960
1493307 3497157 3289248
8523972 9198432 4312377
9709335 6351264 6294204
6821208 8165214 7286535
3024672 1543200 1111104
4999968 5246880 246912
4444416 5246880 1543200
4999968 4999968 9999936
3773520 1886...

output:

1
0
1
0
0
0
1
0
1
0
0
1
1
0
0
0
1
0
1
1

result:

ok 20 lines

Test #19:

score: 0
Accepted
time: 6ms
memory: 3692kb

input:

20
2352936 2941170 9999978
6522477 1470585 8062266
9999978 4999989 4999989
1245672 4999989 1470585
816320 1326520 1734680
4999960 9999920 4999960
5306080 2653040 2653040
5306080 1020400 9999920
1592350 9745182 5222908
5222908 9999958 9745182
6369400 9745182 1592350
6369400 9745182 9999958
5103567 38...

output:

0
0
1
0
1
0
1
0
1
1
1
1
1
0
1
0
1
1
1
1

result:

ok 20 lines

Test #20:

score: 0
Accepted
time: 8ms
memory: 3624kb

input:

20
7799454 2234856 7068594
7469592 6119295 2577003
5131074 5574153 788268
9870705 8852376 4653597
5475555 487800 2695095
6158475 4938975 9999900
2756070 6890175 6890175
2756070 6890175 6890175
800000 400000 400000
5000000 10000000 5000000
5000000 6800000 1800000
6800000 400000 6400000
9999916 844587...

output:

0
0
1
0
0
0
0
0
1
0
1
0
1
1
0
1
1
0
1
0

result:

ok 20 lines

Test #21:

score: 0
Accepted
time: 8ms
memory: 3624kb

input:

20
8237460 1860180 7272027
4902072 8849757 8065575
3965220 5917359 3180429
3014466 9630789 9316083
7918794 5678634 9874566
2886624 5180292 7598136
4464798 1190046 4641780
1591902 1488552 2232360
5111680 7316092 1437660
5111680 4089344 5111680
5111680 5239472 1661296
3610124 1661296 9999724
10000000 ...

output:

0
0
0
1
1
1
1
1
0
1
1
1
1
1
0
0
0
0
0
0

result:

ok 20 lines

Test #22:

score: 0
Accepted
time: 7ms
memory: 3508kb

input:

20
1938141 7950042 2037501
9986301 2037501 7950042
1938141 7950042 9886941
9986301 9886941 7950042
8268288 8041242 2564520
9467202 6784944 8153346
7401474 5033406 4490748
9289506 9273174 3531036
1780818 4999989 890409
4999989 1780818 5821905
9999978 890409 5821905
9999978 4999989 4999989
9999909 269...

output:

1
0
1
1
1
0
0
0
0
0
0
1
0
0
0
1
1
1
0
0

result:

ok 20 lines

Test #23:

score: 0
Accepted
time: 7ms
memory: 3692kb

input:

20
2416104 6711400 9127504
1677850 9999986 9127504
1073824 604026 1677850
6711400 3288586 9999986
7352800 8602776 2720536
5974150 5974150 919100
919100 5974150 5974150
5441072 9999808 1911728
9392195 5013150 8219905
5548800 4903200 1000450
5186040 4242970 3048285
4759225 2184840 5285745
8648640 7837...

output:

1
0
0
1
0
0
1
0
1
1
0
1
1
0
0
0
1
1
1
0

result:

ok 20 lines

Test #24:

score: 0
Accepted
time: 6ms
memory: 3632kb

input:

20
5102000 9999920 3673440
9999920 5408120 8265240
5408120 2551000 9999920
5102000 9999920 6530560
5000000 5000000 10000000
3200000 5000000 8200000
8100000 200000 6500000
6500000 100000 8200000
4999968 4999968 9999936
9999936 2777760 2777760
694440 2777760 1249992
6249960 1249992 4999968
9999990 345...

output:

1
1
1
1
1
1
1
0
0
1
0
1
0
0
1
1
0
1
0
0

result:

ok 20 lines

Test #25:

score: 0
Accepted
time: 7ms
memory: 3660kb

input:

20
2461536 9999990 7538454
1384614 3846150 2461536
3846150 8923068 1384614
8923068 7538454 9999990
7123272 7260258 9999978
7123272 684930 3424650
7123272 684930 7260258
9999978 7123272 3424650
6512715 8851305 6485040
8758230 3115170 9438570
8690730 8032245 8359425
1004070 4133535 3833130
4226690 455...

output:

1
1
0
0
1
1
0
0
1
0
1
1
1
0
0
0
0
1
0
1

result:

ok 20 lines

Test #26:

score: 0
Accepted
time: 7ms
memory: 3628kb

input:

20
5408120 2040800 918360
9999920 2551000 5408120
4999960 9999920 4999960
2040800 1632640 408160
10000000 2000000 4000000
8000000 1000000 5000000
8000000 1000000 5000000
5000000 5000000 10000000
8005300 8476200 8005300
9002500 9418000 138500
8545450 9999700 124650
8005300 8005300 8476200
138888 3611...

output:

1
0
0
1
0
1
1
0
1
0
1
1
1
0
1
1
1
1
0
0

result:

ok 20 lines

Test #27:

score: 0
Accepted
time: 8ms
memory: 3628kb

input:

20
4062500 8562500 10000000
10000000 7062500 8562500
1125000 8562500 7062500
4062500 8562500 1125000
80000 5920000 5200000
10000000 5200000 5920000
4880000 5920000 80000
5920000 4880000 10000000
9717868 4645503 5521328
2311012 5378917 4137074
5021909 7490649 3000224
3284516 9148277 9904852
6249960 1...

output:

1
1
0
1
0
0
1
1
0
1
1
1
1
0
0
0
0
0
0
0

result:

ok 20 lines

Test #28:

score: 0
Accepted
time: 9ms
memory: 3564kb

input:

20
6697128 8053596 6626364
6595068 8455992 2604024
2944560 7228524 6327096
3293904 9652152 8723208
4999968 9999936 4999968
3950592 6975264 3024672
8950560 61728 9999936
246912 8950560 6975264
3340602 5873346 5676840
5698674 5676840 5873346
9192114 109170 9999972
5676840 5676840 349344
987648 9999936...

output:

0
1
0
1
0
0
0
0
1
1
1
1
0
0
0
0
0
0
0
0

result:

ok 20 lines

Test #29:

score: -100
Wrong Answer
time: 3ms
memory: 3704kb

input:

20
4000000 4000000 8000000
2000000 4000000 10000000
6250000 8000000 4250000
4250000 6250000 8000000
9999900 3388855 8722135
1444430 8055475 8722135
8722135 1444430 3388855
8055475 8722135 9999900
3472200 4999968 8472168
4999968 9999936 4999968
8472168 7013844 69444
8402724 138888 7013844
5078125 382...

output:

0
1
1
1
1
1
0
0
1
0
1
0
1
0
0
0
0
0
1
1

result:

wrong answer 7th lines differ - expected: '1', found: '0'