Task: | Tutkat |
Sender: | |
Submission time: | 2015-12-04 20:56:08 +0200 |
Language: | Java |
Status: | READY |
Result: | 40 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 14 |
#2 | ACCEPTED | 26 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.20 s | 1 | details |
#2 | ACCEPTED | 0.20 s | 1 | details |
#3 | ACCEPTED | 0.19 s | 1 | details |
#4 | ACCEPTED | 0.19 s | 1 | details |
#5 | ACCEPTED | 0.20 s | 1 | details |
#6 | ACCEPTED | 0.20 s | 1 | details |
#7 | ACCEPTED | 0.20 s | 1 | details |
#8 | ACCEPTED | 0.20 s | 1 | details |
#9 | ACCEPTED | 0.19 s | 1 | details |
#10 | ACCEPTED | 0.21 s | 1 | details |
#11 | ACCEPTED | 0.19 s | 2 | details |
#12 | ACCEPTED | 0.19 s | 2 | details |
#13 | ACCEPTED | 0.23 s | 2 | details |
#14 | ACCEPTED | 0.26 s | 2 | details |
#15 | ACCEPTED | 0.19 s | 2 | details |
#16 | ACCEPTED | 0.28 s | 2 | details |
#17 | ACCEPTED | 0.26 s | 2 | details |
#18 | ACCEPTED | 0.20 s | 2 | details |
#19 | ACCEPTED | 0.19 s | 2 | details |
#20 | ACCEPTED | 0.20 s | 2 | details |
#21 | ACCEPTED | 0.19 s | 3 | details |
#22 | ACCEPTED | 0.20 s | 3 | details |
#23 | ACCEPTED | 0.66 s | 3 | details |
#24 | ACCEPTED | 0.65 s | 3 | details |
#25 | ACCEPTED | 0.19 s | 3 | details |
#26 | WRONG ANSWER | 0.20 s | 3 | details |
#27 | WRONG ANSWER | 0.21 s | 3 | details |
#28 | ACCEPTED | 0.20 s | 3 | details |
#29 | ACCEPTED | 0.19 s | 3 | details |
#30 | ACCEPTED | 0.19 s | 3 | details |
Code
import java.util.*; public class tutkat { public static void main(String[] args) { Scanner input = new Scanner(System.in); String ans = "QAQ"; int tutkat = input.nextInt(); int[] x = new int[tutkat]; int[] y = new int[tutkat]; if (tutkat < 3 ) ans = "QAQ"; else { x[0] = input.nextInt(); y[0] = input.nextInt(); x[1] = input.nextInt(); y[1] = input.nextInt(); int dy = y[1] - y[0]; int dx = x[1] - x[0]; // k = dy / dx // b = y0 - kx0 // Y = kx + b double b = 0.0; if (dx != 0) b = y[0] - (dy * x[0]) / dx; double test = 0.0; for (int i = 2; i < tutkat; i++) { x[i] = input.nextInt(); y[i] = input.nextInt(); if (dx != 0) { test = (dy * x[i] / dx) + b; if (Math.abs(test - y[i]) > 0.000000001) { ans = "10-4"; break; } } if (dx == 0) { test = x[0]; if (Math.abs(test - x[i]) > 0.1) { ans = "10-4"; break; } } } // for tutkat } // else System.out.println(ans); } }
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
1 4 0 |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
2 8 7 0 0 |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
10 3 -5 2 -5 -5 -5 8 -5 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
10 5 -10 5 1 5 1 5 2 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
10 6 -1 -9 -1 -10 -1 -6 -1 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 6
Group: 1
Verdict: ACCEPTED
input |
---|
10 10 9 -3 -4 -6 -7 -9 -10 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 7
Group: 1
Verdict: ACCEPTED
input |
---|
10 -4 6 -3 4 -6 10 -2 2 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 8
Group: 1
Verdict: ACCEPTED
input |
---|
10 0 -5 3 -1 -8 7 -7 -4 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |
Test 9
Group: 1
Verdict: ACCEPTED
input |
---|
10 -6 9 0 -2 4 -6 -3 -10 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |
Test 10
Group: 1
Verdict: ACCEPTED
input |
---|
10 -8 6 -2 6 2 7 4 4 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |
Test 11
Group: 2
Verdict: ACCEPTED
input |
---|
1 -441 481 |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 12
Group: 2
Verdict: ACCEPTED
input |
---|
2 839 909 -200 80 |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 13
Group: 2
Verdict: ACCEPTED
input |
---|
1000 -423 925 -472 925 -809 925 326 925 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 14
Group: 2
Verdict: ACCEPTED
input |
---|
1000 -762 -767 -762 200 -762 -334 -762 209 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 15
Group: 2
Verdict: ACCEPTED
input |
---|
10 3 7 -2 -3 -4 -7 3 7 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 16
Group: 2
Verdict: ACCEPTED
input |
---|
1000 801 799 -260 -262 -67 -69 -554 -556 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 17
Group: 2
Verdict: ACCEPTED
input |
---|
1000 -272 -2 69 -2 751 -2 -52 -2 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 18
Group: 2
Verdict: ACCEPTED
input |
---|
1000 -489 -811 -643 -824 -277 174 444 765 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |
Test 19
Group: 2
Verdict: ACCEPTED
input |
---|
1000 489 835 -200 127 -381 726 77 -521 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |
Test 20
Group: 2
Verdict: ACCEPTED
input |
---|
1000 281 736 -124 -915 786 -855 114 989 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |
Test 21
Group: 3
Verdict: ACCEPTED
input |
---|
1 -3456 -2745 |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 22
Group: 3
Verdict: ACCEPTED
input |
---|
2 -251857 -954786 503100 816554 |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 23
Group: 3
Verdict: ACCEPTED
input |
---|
100000 330161 -746892 220170 -746892 -65044 -746892 806626 -746892 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 24
Group: 3
Verdict: ACCEPTED
input |
---|
100000 722581 -574844 722581 -466372 722581 664802 722581 -105614 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 25
Group: 3
Verdict: ACCEPTED
input |
---|
10 -1 -2 -2 -4 -5 -10 3 6 ... |
correct output |
---|
QAQ |
user output |
---|
QAQ |
Test 26
Group: 3
Verdict: WRONG ANSWER
input |
---|
100000 -203540 -407080 485311 970622 111563 223126 -440181 -880362 ... |
correct output |
---|
QAQ |
user output |
---|
10-4 |
Test 27
Group: 3
Verdict: WRONG ANSWER
input |
---|
100000 68694 137388 36535 73070 72667 145334 -261754 -523508 ... |
correct output |
---|
QAQ |
user output |
---|
10-4 |
Test 28
Group: 3
Verdict: ACCEPTED
input |
---|
100000 282590 559482 857807 -597385 957181 139364 -710955 660838 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |
Test 29
Group: 3
Verdict: ACCEPTED
input |
---|
100000 -228024 -516020 -906860 278692 -460599 616754 194654 637343 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |
Test 30
Group: 3
Verdict: ACCEPTED
input |
---|
100000 903962 491932 -444159 -408066 -444246 262614 678743 52561 ... |
correct output |
---|
10-4 |
user output |
---|
10-4 |