CSES - Datatähti 2016 alku - Results
Submission details
Task:Bittipeli
Sender:kalh
Submission time:2015-10-11 16:43:17 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#1ACCEPTED0.17 s1details
#2ACCEPTED0.18 s1details
#30.17 s1details
#4ACCEPTED0.18 s1details
#5ACCEPTED0.18 s1details
#6ACCEPTED0.17 s1details
#70.17 s1details
#8ACCEPTED0.18 s1details
#9ACCEPTED0.17 s1details
#100.19 s1details
#11ACCEPTED0.17 s1details
#120.17 s1details
#13ACCEPTED0.19 s1details
#14ACCEPTED0.18 s1details
#15ACCEPTED0.18 s1details
#160.17 s1details
#17ACCEPTED0.20 s1details
#18ACCEPTED0.17 s1details
#190.19 s1details
#20ACCEPTED0.18 s1details
#21ACCEPTED0.17 s2details
#220.17 s2details
#23ACCEPTED0.18 s2details
#24ACCEPTED0.17 s2details
#25ACCEPTED0.19 s2details
#260.18 s2details
#270.17 s2details
#28ACCEPTED0.18 s2details
#29ACCEPTED0.17 s2details
#30ACCEPTED0.17 s2details
#31ACCEPTED0.18 s2details
#32ACCEPTED0.19 s2details
#33ACCEPTED0.17 s2details
#340.17 s2details
#35ACCEPTED0.17 s2details
#360.87 s2details
#37--2details
#380.17 s2details
#39ACCEPTED0.19 s2details
#400.19 s2details
#41ACCEPTED0.18 s3details
#420.19 s3details
#430.19 s3details
#44ACCEPTED0.17 s3details
#45ACCEPTED0.17 s3details
#46ACCEPTED0.19 s3details
#47ACCEPTED0.18 s3details
#48ACCEPTED0.17 s3details
#49ACCEPTED0.28 s3details
#50ACCEPTED0.17 s3details
#51ACCEPTED0.17 s3details
#52ACCEPTED0.18 s3details
#530.18 s3details
#54ACCEPTED0.17 s3details
#55ACCEPTED0.17 s3details
#56--3details
#57--3details
#580.33 s3details
#59ACCEPTED0.53 s3details
#600.17 s3details
#61ACCEPTED0.17 s4details
#62ACCEPTED0.17 s4details
#63ACCEPTED0.17 s4details
#64ACCEPTED0.17 s4details
#65ACCEPTED0.18 s4details
#660.17 s4details
#67ACCEPTED0.17 s4details
#68ACCEPTED0.18 s4details
#69ACCEPTED0.17 s4details
#70ACCEPTED0.18 s4details
#710.19 s4details
#72ACCEPTED0.17 s4details
#73ACCEPTED0.17 s4details
#74ACCEPTED0.17 s4details
#75ACCEPTED0.18 s4details
#760.81 s4details
#770.80 s4details
#780.80 s4details
#790.85 s4details
#800.18 s4details

Code

import java.util.*;

public class Tehtava5 {
	
	private static IO io;
	private static HashMap<String, String> arvotaulukko;
	private static HashMap<String, Integer> askelTaulukko;
	private static long a;

	private static HashMap<String, Boolean> testiTaulukko;
	
	
	
	public static String suorita(String jono) {
		
		String tulos = poistaJonoja(jono, 0, 0, -1);
		return tulos;
		
	}
	

	
	public static String poistaJonoja(String jono, int indeksi, int pituus, int poistoindeksi1) {
		int alku = 0;
		int uusiindeksi = 0;
		int alaspainalku = 0;
		int ylospainalku = 0;
		
		String jono1 = new StringBuilder().append(jono).delete(indeksi, indeksi+pituus).toString();
		
		
		//System.out.println(jono + " ---> " + jono1 + ", poistoindeksi: " + poistoindeksi1 + ", indeksi: " + indeksi);
		//System.out.println("poistot" +": " + poistot);
		
	
		
		if (arvotaulukko.containsKey(jono1)) {
			return arvotaulukko.get(jono1);
		}
		
		int testiindeksi = indeksi+pituus;
		if (indeksi+pituus >= jono1.length()) {
			testiindeksi = jono1.length()-1;
		}
		
		if (indeksi > 0 && jono1.length() > indeksi && jono1.length() > 3) {
		if (jono1.charAt(indeksi) == jono1.charAt(indeksi-1) && indeksi > 1) {		
			if (jono1.charAt(indeksi) == jono1.charAt(indeksi-2))
				poistoindeksi1--;
		}
		
		}
		
		for (int i = testiindeksi; i > 0; i--) {
			if (jono1.charAt(i) != jono1.charAt(i-1)) {
			//	System.out.println(jono1.charAt(i) + ":::" + jono1.charAt(i-1));
				alaspainalku = i-1;
				ylospainalku = i;
			}
		}
		
		if (alaspainalku == 0 && ylospainalku == 0) {
			alaspainalku = jono1.length()-1;
			ylospainalku = jono1.length();
		}
		
		//System.out.println(alaspainalku + ":" + ylospainalku + ", " + poistoindeksi1);
		

		
		pituus = 1;
		int poistoindeksi = 0;
		boolean mahdollisia = true;
		String uusi;
		
		if (poistoindeksi1 == -1) {
		for (int i = 0; i < jono1.length() - 1; i++) {

			if (jono1.charAt(i) != jono1.charAt(i + 1)) {
				mahdollisia = false;
				if (pituus > 1) {
					poistoindeksi++;

					uusi = poistaJonoja(jono1, alku, pituus, poistoindeksi);
					
					if (!uusi.equals("")) {
						//System.out.println("palautus1: " + jono1 + ", " + Integer.toString(poistoindeksi).concat(" ").concat(uusi));
						arvotaulukko.put(jono1, Integer.toString(poistoindeksi).concat(" ").concat(uusi));
						return Integer.toString(poistoindeksi).concat(" ").concat(uusi);
					}
	

				} 
				
				pituus = 1;
				alku = i+1;
			}

			else {
				pituus++;
			}

		}
		
		}
		
		else if (poistoindeksi1 > 0) {
		poistoindeksi = poistoindeksi1-1;
		pituus = 1;
		alku = ylospainalku;
		for (int i = ylospainalku; i < jono1.length() - 1; i++) {

			if (jono1.charAt(i) != jono1.charAt(i + 1)) {
				mahdollisia = false;
				if (pituus > 1) {
					//System.out.println("kasvaa " + i);
					poistoindeksi++;
					
					uusi = poistaJonoja(jono1, alku, pituus, poistoindeksi);	
					
					if (!uusi.equals("")) {
					//	System.out.println("palautus2: " + jono1 + ", " + Integer.toString(poistoindeksi).concat(" ").concat(uusi));
						arvotaulukko.put(jono1, Integer.toString(poistoindeksi).concat(" ").concat(uusi));
						return Integer.toString(poistoindeksi).concat(" ").concat(uusi);
					}
	

				} 
				
				pituus = 1;
				alku = i+1;
			}
			
			else if (i == jono1.length()-2) {
				if (pituus == 1) {
					
					poistoindeksi++;
					
					uusi = poistaJonoja(jono1, alku, pituus+1, poistoindeksi);	
					
					if (!uusi.equals("")) {
						//System.out.println("loytyi: " + jono1 + ", "+ i + ", " + alku + ":" + pituus);
						arvotaulukko.put(jono1, Integer.toString(poistoindeksi).concat(" ").concat(uusi));
						return Integer.toString(poistoindeksi).concat(" ").concat(uusi);
					}
				}
			}

			else {
				pituus++;
			}

		}
		
		
		
		poistoindeksi = poistoindeksi1;

		pituus = 1;
		alku = alaspainalku;
		//System.out.println("alas:" + alaspainalku);
		for (int i = alaspainalku; i > 0; i--) {

			if (jono1.charAt(i) != jono1.charAt(i - 1)) {
				mahdollisia = false;
				if (pituus > 1) {
					poistoindeksi--;

					//System.out.println(pituus-alku + ", " + pituus + ":" + alku + "::" + jono1);
					uusi = poistaJonoja(jono1, alku-pituus, pituus, poistoindeksi);	
					
					if (!uusi.equals("")) {
					//	System.out.println("loytyi2");
						//System.out.println("palautus3: " + jono1 + ", " + Integer.toString(poistoindeksi).concat(" ").concat(uusi));
						arvotaulukko.put(jono1, Integer.toString(poistoindeksi).concat(" ").concat(uusi));
						return Integer.toString(poistoindeksi).concat(" ").concat(uusi);
					}
	

				} 
				
				pituus = 1;
				alku = i-1;
			}

			else {
				pituus++;
			}

		}
		

		}
		
		
		if (mahdollisia && jono1.length() > 1) {
			if (ylospainalku != jono1.length() || alaspainalku < 1) {
				//System.out.println(alaspainalku + ":" + jono1);
				return "";
			}
			String s = Integer.toString(1);
			arvotaulukko.put(jono1, s);
			//System.out.println("palautus4: " + jono1 + ", " + s);
		//	System.out.println("a");
			return s;
		}
		
		arvotaulukko.put(jono1, "");
		
		return "";

	}
	
	public static String luoSatunnainen(int pituus) {
		StringBuilder sb = new StringBuilder();
		Random r = new Random();
		for (int i = 0; i<pituus; i++) {
			sb.append(r.nextInt(2));
		}
		
		return sb.toString();
	}
	
	public static boolean eiToimiReunoista(String jono) {
		if (jono.length() <= 1)
			return true;
		
		char c = jono.charAt(0);
		char c1 = jono.charAt(1);
		
		char c2 = jono.charAt(jono.length()-1);
		char c3 = jono.charAt(jono.length()-2);
		
		if (c1 == c3)
			return false;
		
		if (c1 == c2 || c2 == c3)
			return false;
		
		return true;
	}


	public static void main(String[] args) {
		
		io = new IO();
		String arvo;
		arvo = io.next();
		//long t = System.currentTimeMillis();
		//arvo = "110110";
		//System.out.println(arvo + "|||");
		//askelTaulukko = new HashMap<String, Integer>();
		String tulos;
			
	//	arvo = "00110100100101100100101010101010101010101010101001101101100100101011001";
		//arvo = "100101100101";
		//arvo = "10011101";
		///arvo = "1100100";
		//arvo = "1100";
	//	arvo = "110100100101100100101010101010101010101010101001101101100100101011001";
		//a = System.currentTimeMillis();
		//arvo = luoSatunnainen(100);
		
		arvotaulukko = new HashMap<String, String>();
		testiTaulukko = new HashMap<String, Boolean>();
		//lisaaTestiArvot();

		
		tulos = suorita(arvo);
		
		if (tulos.length() == 0) {
			io.print("QAQ");
		}
		else {
			int askeleita = tulos.split("\\s+").length;
			io.print(askeleita + "\n");
			io.print(tulos);
		}
		
	//	long kesto = System.currentTimeMillis()-a;
		//System.out.println("Kesto: " + kesto);
		
		//System.out.println(((System.currentTimeMillis()-t) + "ms"));
		io.close();

	}



}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
1011001010

correct output
QAQ

user output
QAQ

Test 2

Group: 1

Verdict: ACCEPTED

input
0000001001

correct output
3
1 1 1 

user output
3
1 1 1

Test 3

Group: 1

Verdict:

input
0111011100

correct output
3
2 1 1 

user output
3
1 1 1

Test 4

Group: 1

Verdict: ACCEPTED

input
0100100100

correct output
4
2 1 1 1 

user output
4
1 2 1 1

Test 5

Group: 1

Verdict: ACCEPTED

input
1110010110

correct output
4
2 1 1 1 

user output
4
2 1 1 1

Test 6

Group: 1

Verdict: ACCEPTED

input
1111110110

correct output
3
1 1 1 

user output
3
1 1 1

Test 7

Group: 1

Verdict:

input
0011110001

correct output
3
1 2 1 

user output
QAQ

Test 8

Group: 1

Verdict: ACCEPTED

input
0111111000

correct output
2
1 1 

user output
2
1 1

Test 9

Group: 1

Verdict: ACCEPTED

input
1111111100

correct output
2
1 1 

user output
2
1 1

Test 10

Group: 1

Verdict:

input
1000010011

correct output
3
2 1 1 

user output
3
1 1 1

Test 11

Group: 1

Verdict: ACCEPTED

input
1101110000

correct output
3
1 1 1 

user output
3
1 1 1

Test 12

Group: 1

Verdict:

input
1101101100

correct output
4
1 2 1 1 

user output
4
1 1 1 1

Test 13

Group: 1

Verdict: ACCEPTED

input
0100111110

correct output
3
1 1 1 

user output
3
1 1 1

Test 14

Group: 1

Verdict: ACCEPTED

input
1101001011

correct output
4
2 2 2 1 

user output
5
1 1 1 1 1

Test 15

Group: 1

Verdict: ACCEPTED

input
1110110010

correct output
4
1 2 1 1 

user output
4
1 2 1 1

Test 16

Group: 1

Verdict:

input
0011011100

correct output
3
3 2 1 

user output
3
2 1 1

Test 17

Group: 1

Verdict: ACCEPTED

input
1100101011

correct output
QAQ

user output
QAQ

Test 18

Group: 1

Verdict: ACCEPTED

input
1101100111

correct output
3
2 2 1 

user output
3
2 2 1

Test 19

Group: 1

Verdict:

input
0110000100

correct output
3
2 1 1 

user output
3
1 0 1

Test 20

Group: 1

Verdict: ACCEPTED

input
0000101000

correct output
QAQ

user output
QAQ

Test 21

Group: 2

Verdict: ACCEPTED

input
1110010100

correct output
QAQ

user output
QAQ

Test 22

Group: 2

Verdict:

input
1110010000

correct output
3
2 1 1 

user output
QAQ

Test 23

Group: 2

Verdict: ACCEPTED

input
1001101100

correct output
4
1 1 1 1 

user output
4
2 1 1 1

Test 24

Group: 2

Verdict: ACCEPTED

input
0000000111

correct output
2
1 1 

user output
2
1 1

Test 25

Group: 2

Verdict: ACCEPTED

input
0011111110

correct output
2
2 1 

user output
2
2 1

Test 26

Group: 2

Verdict:

input
1100101100

correct output
4
2 1 1 1 

user output
QAQ

Test 27

Group: 2

Verdict:

input
0111101110

correct output
3
2 1 1 

user output
3
1 1 1

Test 28

Group: 2

Verdict: ACCEPTED

input
0000011011

correct output
3
2 1 1 

user output
3
2 1 1

Test 29

Group: 2

Verdict: ACCEPTED

input
1110011101

correct output
3
3 2 1 

user output
3
3 2 1

Test 30

Group: 2

Verdict: ACCEPTED

input
0001011011

correct output
4
1 1 1 1 

user output
4
1 1 1 1

Test 31

Group: 2

Verdict: ACCEPTED

input
0010110011

correct output
4
1 1 1 1 

user output
4
1 1 1 1

Test 32

Group: 2

Verdict: ACCEPTED

input
0011100000

correct output
2
2 1 

user output
2
2 1

Test 33

Group: 2

Verdict: ACCEPTED

input
1110100110

correct output
4
1 1 1 1 

user output
4
1 1 1 1

Test 34

Group: 2

Verdict:

input
0110110111

correct output
4
2 1 1 1 

user output
QAQ

Test 35

Group: 2

Verdict: ACCEPTED

input
1110110010

correct output
4
1 2 1 1 

user output
4
1 2 1 1

Test 36

Group: 2

Verdict:

input
110011001100110011001010101010...

correct output
QAQ

user output
8
1 3 7 10 9 1 1 1

Test 37

Group: 2

Verdict:

input
110011001100110011001100101010...

correct output
QAQ

user output
(empty)

Test 38

Group: 2

Verdict:

input
110011001100110011001100110011...

correct output
31
1 20 20 20 20 20 20 20 20 20 2...

user output
31
1 2 2 2 2 2 2 2 2 2 2 2 1 1 1 ...

Test 39

Group: 2

Verdict: ACCEPTED

input
010101010101010101010101010101...

correct output
48
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
48
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 40

Group: 2

Verdict:

input
011010000011111011110000110011...

correct output
23
13 13 12 11 11 11 11 10 9 9 9 ...

user output
23
1 1 2 2 2 2 2 2 2 1 2 2 2 2 1 ...

Test 41

Group: 3

Verdict: ACCEPTED

input
0010101000

correct output
QAQ

user output
QAQ

Test 42

Group: 3

Verdict:

input
0100010110

correct output
4
2 1 1 1 

user output
4
1 1 1 1

Test 43

Group: 3

Verdict:

input
0100110110

correct output
4
2 1 1 1 

user output
4
1 1 1 1

Test 44

Group: 3

Verdict: ACCEPTED

input
1110000001

correct output
2
2 1 

user output
2
2 1

Test 45

Group: 3

Verdict: ACCEPTED

input
0001001110

correct output
3
2 2 1 

user output
3
2 2 1

Test 46

Group: 3

Verdict: ACCEPTED

input
0011100011

correct output
3
1 2 1 

user output
3
2 1 1

Test 47

Group: 3

Verdict: ACCEPTED

input
0100111100

correct output
3
1 1 1 

user output
3
1 1 1

Test 48

Group: 3

Verdict: ACCEPTED

input
0001001000

correct output
3
2 2 1 

user output
3
2 2 1

Test 49

Group: 3

Verdict: ACCEPTED

input
0100100010

correct output
4
2 1 1 1 

user output
4
1 2 1 1

Test 50

Group: 3

Verdict: ACCEPTED

input
1100101110

correct output
4
2 1 1 1 

user output
4
2 1 1 1

Test 51

Group: 3

Verdict: ACCEPTED

input
1000111011

correct output
3
2 1 1 

user output
3
2 1 1

Test 52

Group: 3

Verdict: ACCEPTED

input
1000111111

correct output
2
1 1 

user output
2
1 1

Test 53

Group: 3

Verdict:

input
0110011100

correct output
3
2 1 1 

user output
3
1 1 1

Test 54

Group: 3

Verdict: ACCEPTED

input
0001000110

correct output
3
2 2 1 

user output
3
2 2 1

Test 55

Group: 3

Verdict: ACCEPTED

input
1110110010

correct output
4
1 2 1 1 

user output
4
1 2 1 1

Test 56

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Test 57

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Test 58

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
1501
1 1000 1000 1000 1000 1000 100...

user output
1501
1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...

Test 59

Group: 3

Verdict: ACCEPTED

input
010101010101010101010101010101...

correct output
2498
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
2498
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 60

Group: 3

Verdict:

input
011100011001011111111000010110...

correct output
1272
1 1 648 647 646 646 645 645 64...

user output
12
1 2 2 2 -1 1 1 1 2 2 1 1

Test 61

Group: 4

Verdict: ACCEPTED

input
1110101110

correct output
QAQ

user output
QAQ

Test 62

Group: 4

Verdict: ACCEPTED

input
0111001011

correct output
4
2 1 1 1 

user output
4
2 1 1 1

Test 63

Group: 4

Verdict: ACCEPTED

input
1101111101

correct output
3
2 2 1 

user output
3
2 2 1

Test 64

Group: 4

Verdict: ACCEPTED

input
1001110001

correct output
3
2 1 1 

user output
3
2 1 1

Test 65

Group: 4

Verdict: ACCEPTED

input
1000000011

correct output
2
1 1 

user output
2
1 1

Test 66

Group: 4

Verdict:

input
0100010111

correct output
4
1 1 1 1 

user output
QAQ

Test 67

Group: 4

Verdict: ACCEPTED

input
0100111010

correct output
4
2 1 1 1 

user output
4
2 1 1 1

Test 68

Group: 4

Verdict: ACCEPTED

input
0010111101

correct output
4
1 1 1 1 

user output
4
1 1 1 1

Test 69

Group: 4

Verdict: ACCEPTED

input
0011111000

correct output
2
2 1 

user output
2
2 1

Test 70

Group: 4

Verdict: ACCEPTED

input
1101001101

correct output
4
2 2 2 1 

user output
4
2 2 2 1

Test 71

Group: 4

Verdict:

input
0110111000

correct output
3
2 1 1 

user output
3
1 1 1

Test 72

Group: 4

Verdict: ACCEPTED

input
1100110111

correct output
3
3 2 1 

user output
3
3 2 1

Test 73

Group: 4

Verdict: ACCEPTED

input
1110011111

correct output
2
2 1 

user output
2
2 1

Test 74

Group: 4

Verdict: ACCEPTED

input
1011000101

correct output
4
2 1 1 1 

user output
4
2 1 1 1

Test 75

Group: 4

Verdict: ACCEPTED

input
1110110010

correct output
4
1 2 1 1 

user output
4
1 2 1 1

Test 76

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Error:
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
	at java.util.Arrays.copyOfRange(Arrays.java:3664)
	at java.lang.String.<init>(String.java:201)
	at java.lang.StringBuilder.toString(StringBuilder.java:407)
	at Tehtava5.poistaJonoja(Tehtava5.java:29)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Teht...

Test 77

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Error:
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
	at java.util.Arrays.copyOfRange(Arrays.java:3664)
	at java.lang.String.<init>(String.java:201)
	at java.lang.StringBuilder.toString(StringBuilder.java:407)
	at Tehtava5.poistaJonoja(Tehtava5.java:29)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Teht...

Test 78

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
30001
1 20000 20000 20000 20000 2000...

user output
(empty)

Error:
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
	at java.util.Arrays.copyOfRange(Arrays.java:3664)
	at java.lang.String.<init>(String.java:201)
	at java.lang.StringBuilder.toString(StringBuilder.java:407)
	at Tehtava5.poistaJonoja(Tehtava5.java:29)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Teht...

Test 79

Group: 4

Verdict:

input
010101010101010101010101010101...

correct output
49998
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
	at java.util.Arrays.copyOfRange(Arrays.java:3664)
	at java.lang.String.<init>(String.java:201)
	at java.lang.StringBuilder.toString(StringBuilder.java:407)
	at Tehtava5.poistaJonoja(Tehtava5.java:29)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Tehtava5.poistaJonoja(Tehtava5.java:119)
	at Teht...

Test 80

Group: 4

Verdict:

input
111000110000011000001101010010...

correct output
25011
1 12471 12470 12469 12468 1246...

user output
3
1 1 1