CSES - Putka Open 2015 – 3/6 - Results
Submission details
Task:Kasat
Sender:
Submission time:2015-09-13 13:33:34 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.18 s1details
#20.20 s2details
#30.18 s3details

Code

import java.util.Arrays;
import java.util.Scanner;


public class Kasat {
	public static void main(String[] args) {
		
		Scanner input = new Scanner(System.in);

		final int testejä = input.nextInt();
		
		int k[][] = new int[testejä][3];
		
		for (int t = 0 ; t<testejä ; t++){
			
			// Haetaan arvot
			k[t][0] = input.nextInt();
			k[t][1] = input.nextInt();
			k[t][2] = input.nextInt();
			int kierroksia = input.nextInt();

			// kierrokset
			for (int n = 0; n<kierroksia; n++){
				
				Arrays.sort(k);
				
				k[t][2] = k[t][2]-1;
				k[t][0] = k[t][0]+1;
				
			}
			
			
			// järjestys lopuksi
			Arrays.sort(k);
			
		}
		
		
		// Tulostetaan kaikki arvot
		
		for (int t = 0; t<testejä; t++){
			System.out.println(k[t][0] + " " + k[t][1] + " " + k[t][2]);
		}
	}

}

Test details

Test 1

Group: 1

Verdict:

input
1000
7 69 64 45
37 5 30 81
50 49 37 38
46 37 100 6
...

correct output
46 47 47
24 24 24
45 45 46
43 46 94
32 32 33
...

user output
(empty)

Error:
Exception in thread "main" java.lang.ClassCastException: [I cannot be cast to java.lang.Comparable
	at java.util.ComparableTimSort.countRunAndMakeAscending(ComparableTimSort.java:316)
	at java.util.ComparableTimSort.sort(ComparableTimSort.java:198)
	at java.util.Arrays.sort(Arrays.java:1246)
	at Kasat.main(Kasat.java:25)

Test 2

Group: 2

Verdict:

input
1000
19 13 88 978977859
67 57 39 960003440
81 16 67 971611942
92 96 2 957979201
...

correct output
39 40 41
54 54 55
54 55 55
63 63 64
36 37 38
...

user output
(empty)

Error:
Exception in thread "main" java.lang.ClassCastException: [I cannot be cast to java.lang.Comparable
	at java.util.ComparableTimSort.countRunAndMakeAscending(ComparableTimSort.java:316)
	at java.util.ComparableTimSort.sort(ComparableTimSort.java:198)
	at java.util.Arrays.sort(Arrays.java:1246)
	at Kasat.main(Kasat.java:25)

Test 3

Group: 3

Verdict:

input
1000
211358104 753479603 549127067 ...

correct output
504654924 504654925 504654925
589019272 589019272 589019273
101309993 101309994 101309994
436205296 436205297 436205298
351062567 351062568 351062568
...

user output
(empty)

Error:
Exception in thread "main" java.lang.ClassCastException: [I cannot be cast to java.lang.Comparable
	at java.util.ComparableTimSort.countRunAndMakeAscending(ComparableTimSort.java:316)
	at java.util.ComparableTimSort.sort(ComparableTimSort.java:198)
	at java.util.Arrays.sort(Arrays.java:1246)
	at Kasat.main(Kasat.java:25)