| Task: | Tutkat |
| Sender: | |
| Submission time: | 2015-12-06 21:31:30 +0200 |
| Language: | Java |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 14 |
| #2 | ACCEPTED | 26 |
| #3 | ACCEPTED | 60 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.21 s | 1 | details |
| #2 | ACCEPTED | 0.20 s | 1 | details |
| #3 | ACCEPTED | 0.19 s | 1 | details |
| #4 | ACCEPTED | 0.20 s | 1 | details |
| #5 | ACCEPTED | 0.19 s | 1 | details |
| #6 | ACCEPTED | 0.19 s | 1 | details |
| #7 | ACCEPTED | 0.19 s | 1 | details |
| #8 | ACCEPTED | 0.20 s | 1 | details |
| #9 | ACCEPTED | 0.19 s | 1 | details |
| #10 | ACCEPTED | 0.20 s | 1 | details |
| #11 | ACCEPTED | 0.20 s | 2 | details |
| #12 | ACCEPTED | 0.20 s | 2 | details |
| #13 | ACCEPTED | 0.23 s | 2 | details |
| #14 | ACCEPTED | 0.28 s | 2 | details |
| #15 | ACCEPTED | 0.19 s | 2 | details |
| #16 | ACCEPTED | 0.28 s | 2 | details |
| #17 | ACCEPTED | 0.28 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.18 s | 3 | details |
| #23 | ACCEPTED | 0.65 s | 3 | details |
| #24 | ACCEPTED | 0.66 s | 3 | details |
| #25 | ACCEPTED | 0.20 s | 3 | details |
| #26 | ACCEPTED | 0.66 s | 3 | details |
| #27 | ACCEPTED | 0.66 s | 3 | details |
| #28 | ACCEPTED | 0.19 s | 3 | details |
| #29 | ACCEPTED | 0.20 s | 3 | details |
| #30 | ACCEPTED | 0.19 s | 3 | details |
Code
//package tutkat;
import java.util.HashSet;
import java.util.Scanner;
/**
*
* @author Adreno
*/
public class Tutkat {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
int n = s.nextInt();
if (n<3) {
System.out.println("QAQ");
return;
}
int x1 = s.nextInt();
int y1 = s.nextInt();
int x2 = s.nextInt();
int y2 = s.nextInt();
double kk = 0;
if (x2 != x1) {
kk = (y2-y1) / (x2-x1);
}
for (int i=3; i<=n; i++) {
int x3 = s.nextInt();
int y3 = s.nextInt();
double kk2 = 0;
if (x3 != x2) {
kk2 = (y3-y2) / (x3-x2);
}
double kk3 = 0;
if (x3 != x2) {
kk3 = (y2-y3) / (x2-x3);
}
double kk4 = 0;
if (x3 != x1) {
kk4 = (y3-y1) / (x3-x1);
}
double kk5 = 0;
if (x3 != x1) {
kk5 = (y1-y3) / (x1-x3);
}
if (kk2 != kk && kk3 != kk && kk4 != kk && kk5 != kk) {
System.out.println("10-4");
return;
}
}
System.out.println("QAQ");
}
}
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: ACCEPTED
| input |
|---|
| 100000 -203540 -407080 485311 970622 111563 223126 -440181 -880362 ... |
| correct output |
|---|
| QAQ |
| user output |
|---|
| QAQ |
Test 27
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 100000 68694 137388 36535 73070 72667 145334 -261754 -523508 ... |
| correct output |
|---|
| QAQ |
| user output |
|---|
| QAQ |
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 |
